File: long_command_line

package info (click to toggle)
make-dfsg 4.4.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,948 kB
  • sloc: ansic: 31,304; sh: 5,222; perl: 1,716; makefile: 162; lisp: 26; sed: 16
file content (30 lines) | stat: -rw-r--r-- 778 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#                                                                    -*-perl-*-
$description = "Test long command line.";

$details = "";

# Variable names containing UTF8 characters
run_make_test(q!
# 49 characters
ARGS:=one two three four five six seven eight niner ten
# 49*4+3 = 199 characters
ARGS:=$(ARGS) $(ARGS) $(ARGS) $(ARGS)
# 199*4+3 = 799 characters
ARGS:=$(ARGS) $(ARGS) $(ARGS) $(ARGS)
# 799*4+3 = 3199 characters
ARGS:=$(ARGS) $(ARGS) $(ARGS) $(ARGS)
# 3199*4+3 = 12799 characters
ARGS:=$(ARGS) $(ARGS) $(ARGS) $(ARGS)
# 12799*4+3 = 51199 characters
ARGS:=$(ARGS) $(ARGS) $(ARGS) $(ARGS)
# 51199*4+3 = 204799 characters
ARGS:=$(ARGS) $(ARGS) $(ARGS) $(ARGS)
# 24799*2+1 = 409599 characters
#ARGS:=$(ARGS) $(ARGS)

test:
	@: $(ARGS)
!,
              '', "");

1;