diff options
| author | Tim Foley <tfoleyNV@users.noreply.github.com> | 2017-10-06 08:43:47 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-10-06 08:43:47 -0700 |
| commit | 3693bff4a2b822a2b29ac563d464d1012a3a3eda (patch) | |
| tree | 4a55aa8df2c3c8b912560399bdedd3196a4e9252 /Makefile | |
| parent | 33de7156d0cc57e70423ad69bfad33488f96134a (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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |
