VirtualBox

source: kBuild/trunk/src/kmk/tests/scripts/options/dash-q@ 947

Last change on this file since 947 was 285, checked in by bird, 19 years ago

This commit was generated by cvs2svn to compensate for changes in r284,
which included commits to RCS files with non-trunk default branches.

  • Property svn:eol-style set to native
File size: 800 bytes
Line 
1# -*-perl-*-
2$description = "Test the -q option.\n";
3
4$details = "Try various uses of -q and ensure they all give the correct results.\n";
5
6# TEST 0
7
8run_make_test('
9one:
10two: ;
11three: ; :
12four: ; $(.XY)
13five: ; \
14 $(.XY)
15six: ; \
16 $(.XY)
17 $(.XY)
18seven: ; \
19 $(.XY)
20 : foo
21 $(.XY)
22',
23 '-q one', '');
24
25# TEST 1
26
27run_make_test(undef, '-q two', '');
28
29# TEST 2
30
31run_make_test(undef, '-q three', '', 256);
32
33# TEST 3
34
35run_make_test(undef, '-q four', '');
36
37# TEST 4
38
39run_make_test(undef, '-q five', '');
40
41# TEST 5
42
43run_make_test(undef, '-q six', '');
44
45# TEST 6
46
47run_make_test(undef, '-q seven', '', 256);
48
49# TEST 7 : Savannah bug # 7144
50
51run_make_test('
52one:: ; @echo one
53one:: ; @echo two
54',
55 '-q', '', 256);
56
571;
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette