Tougher tests, and test the tests.
This commit is contained in:
4
ttest
4
ttest
@@ -1,6 +1,6 @@
|
||||
#!/bin/sh
|
||||
|
||||
dirs=src/kernel
|
||||
dirs="toolchain src/kernel"
|
||||
|
||||
main()
|
||||
{
|
||||
@@ -10,7 +10,7 @@ main()
|
||||
for suite in $files; do
|
||||
|
||||
test_exec="${suite}est"
|
||||
compiler_output=`cc -x c $suite -o $test_exec -I $dir/include -I toolchain -DTTEST 2>&1`
|
||||
compiler_output=`cc -x c $suite -o $test_exec -Wall -Wextra -Werror -I $dir/include -I toolchain -DTTEST 2>&1`
|
||||
compiler_status=$?
|
||||
|
||||
if [[ "$compiler_status" -eq "0" ]]; then
|
||||
|
||||
Reference in New Issue
Block a user