aboutsummaryrefslogtreecommitdiff
path: root/tests/tests2/Makefile
diff options
context:
space:
mode:
authorMatteo Cypriani <mcy@lm7.fr>2014-10-16 11:17:46 -0400
committerMatteo Cypriani <mcy@lm7.fr>2014-10-17 16:37:54 -0400
commit26b26f355fe854d5c61919d886e09b5f7acd4a3e (patch)
tree357b03055bce6c121781d004b72e21e0d0aec868 /tests/tests2/Makefile
parent9d7fb3336049243a16ce20ba907946d1de9e1c0d (diff)
downloadtinycc-26b26f355fe854d5c61919d886e09b5f7acd4a3e.tar.gz
tinycc-26b26f355fe854d5c61919d886e09b5f7acd4a3e.tar.bz2
Filter-out warning about softfloat in tests2
Diffstat (limited to 'tests/tests2/Makefile')
-rw-r--r--tests/tests2/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tests2/Makefile b/tests/tests2/Makefile
index 66d2f5a..924f03c 100644
--- a/tests/tests2/Makefile
+++ b/tests/tests2/Makefile
@@ -113,10 +113,10 @@ all test: $(filter-out $(SKIP),$(TESTS))
%.test: %.c %.expect
@echo Test: $*...
- @$(TCC) -run $< $(ARGS) >$*.output 2>&1 || true
+ @$(TCC) -run $< $(ARGS) 2>&1 | grep -v 'warning: soft float ABI currently not supported: default to softfp' >$*.output || true
@diff -bu $*.expect $*.output && rm -f $*.output
- @($(TCC) $< -o $*.exe && ./$*.exe $(ARGS)) >$*.output2 2>&1 || true
+ @($(TCC) $< -o $*.exe && ./$*.exe $(ARGS)) 2>&1 | grep -v 'warning: soft float ABI currently not supported: default to softfp' >$*.output2 || true
@diff -bu $*.expect $*.output2 && rm -f $*.output2 $*.exe
clean: