Index

lognestmonster / 878a8f8

A general-purpose single-header C logging library and parser for event-based logs. (Incomplete)

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
10711 Sep 2019 19:29878a8f8Update testsJosh Stockin122N

Blob @ lognestmonster / test

text/x-shellscript590 bytesdownload raw
1#!/usr/bin/env bash
2
3mkdir -p bin
4
5call_python() {
6 python3 $@ || python $@
7}
8
9run() {
10 call_python $@
11 code=$?
12 if [ ${code} -ne 0 ]
13 then
14 echo -e "\033[91m\033[7mError in test '${1}'. Exiting...\033[0m"
15 exit ${code}
16 fi
17}
18
19run_tests() {
20 # Test prep (generate log files)
21 echo -e "\033[93mUndergoing test preparations\033[0m"
22 run ./tests/write.py ./bin/w1.lnm
23 run ./tests/write_many.py ./bin/w2.lnm 100
24 echo
25
26 # Unit tests
27 echo -e "\033[93mBeginning unit tests\033[0m"
28 run ./tests/unit_parserargs.py
29 echo
30
31 echo -e "\033[92mFinished! Exiting with code 0...\033[0m"
32}
33
34run_tests
35