diff options
author | Matt A. Tobin <email@mattatobin.com> | 2022-10-05 14:14:19 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2022-10-05 14:14:19 -0500 |
commit | e4ed223f80260aa735a77bc4cfff25b76f3e7a94 (patch) | |
tree | e890a72e87bfcf0b17ba9f4ee343f8b8eaf39389 /python/pymake/tests/include-test.mk | |
parent | 22e29728789d598287d22bc290af666940937dd4 (diff) | |
download | aura-central-e4ed223f80260aa735a77bc4cfff25b76f3e7a94.tar.gz |
[RES2] Move pymake to python/ and remove a bunch of mozconfig and other half-out-of-date MozInfra items from build/
Diffstat (limited to 'python/pymake/tests/include-test.mk')
-rw-r--r-- | python/pymake/tests/include-test.mk | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/python/pymake/tests/include-test.mk b/python/pymake/tests/include-test.mk new file mode 100644 index 000000000..3608fc269 --- /dev/null +++ b/python/pymake/tests/include-test.mk @@ -0,0 +1,8 @@ +$(shell echo "INCLUDED2 = yes" >local-include.inc) + +include $(TESTPATH)/include-file.inc local-include.inc + +all: + test "$(INCLUDED)" = "yes" + test "$(INCLUDED2)" = "yes" + @echo TEST-PASS |