diff options
author | Ryan <ry@tinyclouds.org> | 2009-06-16 19:32:31 +0200 |
---|---|---|
committer | Ryan <ry@tinyclouds.org> | 2009-06-16 19:32:31 +0200 |
commit | 40ee85242532b81dce7b64ed7e2357ca3a98cbc5 (patch) | |
tree | edfea3a178638853180f8d18e7bcf876b68a8709 /configure | |
parent | 193283bc381ff7b798e7bf5dff7d0a11e55e0b40 (diff) | |
download | node-new-40ee85242532b81dce7b64ed7e2357ca3a98cbc5.tar.gz |
Only run debug tests if the build debug was built
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -96,11 +96,13 @@ FAIL=python -c 'print("\033[1;31mFAIL\033[m")' PASS=python -c 'print("\033[1;32mPASS\033[m")' test: all - @for i in test/test*.js; do \\ - echo "default \$\$i: "; \\ + @for i in test/test*.js; do \\ + echo "default \$\$i: "; \\ build/default/node \$\$i && \$(PASS) || \$(FAIL); \\ - echo "debug \$\$i: "; \\ - build/debug/node \$\$i && \$(PASS) || \$(FAIL); \\ + if [ -e build/debug/node ]; then \\ + echo "debug \$\$i: "; \\ + build/debug/node \$\$i && \$(PASS) || \$(FAIL); \\ + fi; \\ done clean: |