tests2: fix and enable 46_grep test.

This commit is contained in:
minux
2014-04-12 14:04:10 -04:00
parent 0a51386960
commit aa255f37f2
3 changed files with 13 additions and 8 deletions

View File

@ -84,11 +84,9 @@ TESTS = \
66_macro_concat_end.test \
67_macro_concat.test
# 30_hanoi.test -- seg fault in the code, gcc as well
# 34_array_assignment.test -- array assignment is not in C standard
# 46_grep.test -- does not compile even with gcc
SKIP = 34_array_assignment.test 46_grep.test
SKIP = 34_array_assignment.test
# some tests do not pass on all platforms, remove them for now
ifeq ($(TARGETOS),Darwin)
@ -102,6 +100,7 @@ endif
# Some tests might need arguments
ARGS =
31_args.test : ARGS = arg1 arg2 arg3 arg4 arg5
46_grep.test : ARGS = '[^* ]*[:a:d: ]+\:\*-/: $$' 46_grep.c
all test: $(filter-out $(SKIP),$(TESTS))