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." |
|
jvoung (off chromium)
2015/08/18 17:18:22
Thanks =)
Would it make sense to put this by the
ascull
2015/08/18 18:38:00
Done.
|
| +endif |
| check: check-lit check-unit check-xtest |