summaryrefslogtreecommitdiffstats
path: root/make/make-3.81/tests/scripts/options/dash-q
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2010-12-12 04:13:19 +0100
committerLukc <lukc@upyum.com>2010-12-12 04:13:19 +0100
commit9769d39d792c1e912234e23e663ba8bd21a6386e (patch)
tree76bf5a6a6c756cf78c73a847b2ff3ec97f048ee7 /make/make-3.81/tests/scripts/options/dash-q
parentabb6804a2c95065cbc228c3726781d44ed04e6cd (diff)
downloadbase-9769d39d792c1e912234e23e663ba8bd21a6386e.tar.gz
base-9769d39d792c1e912234e23e663ba8bd21a6386e.tar.bz2
base-9769d39d792c1e912234e23e663ba8bd21a6386e.tar.xz
base-9769d39d792c1e912234e23e663ba8bd21a6386e.zip
Recette de make retir?e.
Diffstat (limited to 'make/make-3.81/tests/scripts/options/dash-q')
-rw-r--r--make/make-3.81/tests/scripts/options/dash-q57
1 files changed, 0 insertions, 57 deletions
diff --git a/make/make-3.81/tests/scripts/options/dash-q b/make/make-3.81/tests/scripts/options/dash-q
deleted file mode 100644
index 56f04a1..0000000
--- a/make/make-3.81/tests/scripts/options/dash-q
+++ /dev/null
@@ -1,57 +0,0 @@
-# -*-perl-*-
-$description = "Test the -q option.\n";
-
-$details = "Try various uses of -q and ensure they all give the correct results.\n";
-
-# TEST 0
-
-run_make_test('
-one:
-two: ;
-three: ; :
-four: ; $(.XY)
-five: ; \
- $(.XY)
-six: ; \
- $(.XY)
- $(.XY)
-seven: ; \
- $(.XY)
- : foo
- $(.XY)
-',
- '-q one', '');
-
-# TEST 1
-
-run_make_test(undef, '-q two', '');
-
-# TEST 2
-
-run_make_test(undef, '-q three', '', 256);
-
-# TEST 3
-
-run_make_test(undef, '-q four', '');
-
-# TEST 4
-
-run_make_test(undef, '-q five', '');
-
-# TEST 5
-
-run_make_test(undef, '-q six', '');
-
-# TEST 6
-
-run_make_test(undef, '-q seven', '', 256);
-
-# TEST 7 : Savannah bug # 7144
-
-run_make_test('
-one:: ; @echo one
-one:: ; @echo two
-',
- '-q', '', 256);
-
-1;