Chromium Code Reviews| Index: Makefile.standalone |
| diff --git a/Makefile.standalone b/Makefile.standalone |
| index 0248a1137451c3bb3f20b992c482a55333f7dfac..e8efef31565a704d4f36403884c8fd6b5b0d9c7c 100644 |
| --- a/Makefile.standalone |
| +++ b/Makefile.standalone |
| @@ -361,8 +361,13 @@ check-xtest: $(OBJDIR)/pnacl-sz make_symlink runtime |
| $(LLVM_SRC_PATH)/utils/lit/lit.py -sv crosstest/Output |
| endif |
| +ifdef DEBUG |
| check-unit: $(OBJDIR)/run_unittests |
| $(OBJDIR)/run_unittests |
| +else |
| +check-unit: |
| + @echo "Run with DEBUG=1 lest your machine perish." |
|
Jim Stichnoth
2015/08/18 17:11:28
Cool.
Maybe add "check-unit" to the echo string,
ascull
2015/08/18 18:38:01
Done.
John
2015/08/18 18:51:39
I have something similar in a patch -- which I rep
ascull
2015/08/18 19:03:10
We can merge to yours when the time comes. Mine is
|
| +endif |
| check: check-lit check-unit check-xtest |