diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2019-01-19 10:06:29 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2019-01-19 10:06:29 +0000 | 
| commit | 94994d372d014ce4c8758b9605d63fae651bd8aa (patch) | |
| tree | 51c0b708bd59f205d6b35cb2a8c24d62f0c33d77 /lit/BuildScript/script-args.test | |
| parent | 39be7ce23363d12ae3e49aeb1fdb2bfeb892e836 (diff) | |
Notes
Diffstat (limited to 'lit/BuildScript/script-args.test')
| -rw-r--r-- | lit/BuildScript/script-args.test | 32 | 
1 files changed, 32 insertions, 0 deletions
diff --git a/lit/BuildScript/script-args.test b/lit/BuildScript/script-args.test new file mode 100644 index 000000000000..13e8a5160942 --- /dev/null +++ b/lit/BuildScript/script-args.test @@ -0,0 +1,32 @@ +RUN: %build -n --verbose --arch=32 --mode=compile --compiler=any -o %t/foo.out foobar.c \
 +RUN:    | FileCheck %s
 +RUN: %build -n --verbose --arch=32 --mode=compile --compiler=any --outdir %t foo.c bar.c \
 +RUN:    | FileCheck --check-prefix=MULTI-INPUT %s
 +
 +
 +CHECK:      Script Arguments:
 +CHECK-NEXT:   Arch: 32
 +CHECK:        Compiler: any
 +CHECK:        Outdir: {{.*}}script-args.test.tmp
 +CHECK:        Output: {{.*}}script-args.test.tmp{{.}}foo.out
 +CHECK:        Nodefaultlib: False
 +CHECK:        Opt: none
 +CHECK:        Mode: compile
 +CHECK:        Clean: True
 +CHECK:        Verbose: True
 +CHECK:        Dryrun: True
 +CHECK:        Inputs: foobar.c
 +
 +MULTI-INPUT:      Script Arguments:
 +MULTI-INPUT-NEXT:   Arch: 32
 +MULTI-INPUT-NEXT:   Compiler: any
 +MULTI-INPUT-NEXT:   Outdir: {{.*}}script-args.test.tmp
 +MULTI-INPUT-NEXT:   Output: 
 +MULTI-INPUT-NEXT:   Nodefaultlib: False
 +MULTI-INPUT-NEXT:   Opt: none
 +MULTI-INPUT-NEXT:   Mode: compile
 +MULTI-INPUT-NEXT:   Clean: True
 +MULTI-INPUT-NEXT:   Verbose: True
 +MULTI-INPUT-NEXT:   Dryrun: True
 +MULTI-INPUT-NEXT:   Inputs: foo.c
 +MULTI-INPUT-NEXT:           bar.c
  | 
