summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorTim Foley <tfoleyNV@users.noreply.github.com>2017-10-06 08:43:47 -0700
committerGitHub <noreply@github.com>2017-10-06 08:43:47 -0700
commit3693bff4a2b822a2b29ac563d464d1012a3a3eda (patch)
tree4a55aa8df2c3c8b912560399bdedd3196a4e9252 /Makefile
parent33de7156d0cc57e70423ad69bfad33488f96134a (diff)
Attempt to fix subprocess handling for Linux (#197)
* Attempt to fix subprocess handling for Linux Our CI builds are sometimes hanging on Travis, and I suspect it might be something to do with how we are waiting for subprocesses to complete. I'm trying to following the manpage for the `wait()` and `waitpid()` calls a bit better here. * fixup: try to use poll() instead of select() * fixup: missing header * fixup * fixup * fixup: try to emit test output when tests fail on Travis
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 404432b81..995685d5c 100644
--- a/Makefile
+++ b/Makefile
@@ -168,7 +168,7 @@ $(OUTPUTDIR):
mkdir -p $(OUTPUTDIR)
test: $(SLANG_TEST) $(SLANG_EVAL_TEST)
- $(SLANG_TEST) -bindir $(OUTPUTDIR) -category $(SLANG_TEST_CATEGORY)
+ $(SLANG_TEST) -bindir $(OUTPUTDIR) -category $(SLANG_TEST_CATEGORY) $(SLANG_TEST_FLAGS)
clean:
rm -rf $(OUTPUTDIR)