mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
43b198106a
All of these depend on the order of tests, so if one runs them twice, the tests within them will naturally be reordered using the previous run times, which breaks them.
102 lines
4.0 KiB
Python
102 lines
4.0 KiB
Python
# Check the env command
|
|
|
|
# FIXME: this test depends on order of tests
|
|
# RUN: rm -f %{inputs}/shtest-env/.lit_test_times.txt
|
|
|
|
# RUN: not %{lit} -j 1 -a -v %{inputs}/shtest-env \
|
|
# RUN: | FileCheck -match-full-lines %s
|
|
#
|
|
# END.
|
|
|
|
# Make sure env commands are included in printed commands.
|
|
|
|
# CHECK: -- Testing: 16 tests{{.*}}
|
|
|
|
# CHECK: FAIL: shtest-env :: env-args-last-is-assign.txt ({{[^)]*}})
|
|
# CHECK: $ "env" "FOO=1"
|
|
# CHECK: Error: 'env' requires a subcommand
|
|
# CHECK: error: command failed with exit status: {{.*}}
|
|
|
|
# CHECK: FAIL: shtest-env :: env-args-last-is-u-arg.txt ({{[^)]*}})
|
|
# CHECK: $ "env" "-u" "FOO"
|
|
# CHECK: Error: 'env' requires a subcommand
|
|
# CHECK: error: command failed with exit status: {{.*}}
|
|
|
|
# CHECK: FAIL: shtest-env :: env-args-last-is-u.txt ({{[^)]*}})
|
|
# CHECK: $ "env" "-u"
|
|
# CHECK: Error: 'env' requires a subcommand
|
|
# CHECK: error: command failed with exit status: {{.*}}
|
|
|
|
# CHECK: FAIL: shtest-env :: env-args-nested-none.txt ({{[^)]*}})
|
|
# CHECK: $ "env" "env" "env"
|
|
# CHECK: Error: 'env' requires a subcommand
|
|
# CHECK: error: command failed with exit status: {{.*}}
|
|
|
|
# CHECK: FAIL: shtest-env :: env-args-none.txt ({{[^)]*}})
|
|
# CHECK: $ "env"
|
|
# CHECK: Error: 'env' requires a subcommand
|
|
# CHECK: error: command failed with exit status: {{.*}}
|
|
|
|
# CHECK: FAIL: shtest-env :: env-calls-cd.txt ({{[^)]*}})
|
|
# CHECK: $ "env" "-u" "FOO" "BAR=3" "cd" "foobar"
|
|
# CHECK: Error: 'env' cannot call 'cd'
|
|
# CHECK: error: command failed with exit status: {{.*}}
|
|
|
|
# CHECK: FAIL: shtest-env :: env-calls-colon.txt ({{[^)]*}})
|
|
# CHECK: $ "env" "-u" "FOO" "BAR=3" ":"
|
|
# CHECK: Error: 'env' cannot call ':'
|
|
# CHECK: error: command failed with exit status: {{.*}}
|
|
|
|
# CHECK: FAIL: shtest-env :: env-calls-echo.txt ({{[^)]*}})
|
|
# CHECK: $ "env" "-u" "FOO" "BAR=3" "echo" "hello" "world"
|
|
# CHECK: Error: 'env' cannot call 'echo'
|
|
# CHECK: error: command failed with exit status: {{.*}}
|
|
|
|
# CHECK: PASS: shtest-env :: env-calls-env.txt ({{[^)]*}})
|
|
# CHECK: $ "env" "env" "{{[^"]*}}" "print_environment.py"
|
|
# CHECK: $ "env" "FOO=2" "env" "BAR=1" "{{[^"]*}}" "print_environment.py"
|
|
# CHECK: $ "env" "-u" "FOO" "env" "-u" "BAR" "{{[^"]*}}" "print_environment.py"
|
|
# CHECK: $ "env" "-u" "FOO" "BAR=1" "env" "-u" "BAR" "FOO=2" "{{[^"]*}}" "print_environment.py"
|
|
# CHECK: $ "env" "-u" "FOO" "BAR=1" "env" "-u" "BAR" "FOO=2" "env" "BAZ=3" "{{[^"]*}}" "print_environment.py"
|
|
# CHECK-NOT: ${{.*}}print_environment.py
|
|
|
|
# CHECK: FAIL: shtest-env :: env-calls-export.txt ({{[^)]*}})
|
|
# CHECK: $ "env" "-u" "FOO" "BAR=3" "export" "BAZ=3"
|
|
# CHECK: Error: 'env' cannot call 'export'
|
|
# CHECK: error: command failed with exit status: {{.*}}
|
|
|
|
# CHECK: FAIL: shtest-env :: env-calls-mkdir.txt ({{[^)]*}})
|
|
# CHECK: $ "env" "-u" "FOO" "BAR=3" "mkdir" "foobar"
|
|
# CHECK: Error: 'env' cannot call 'mkdir'
|
|
# CHECK: error: command failed with exit status: {{.*}}
|
|
|
|
# CHECK: FAIL: shtest-env :: env-calls-not-builtin.txt ({{[^)]*}})
|
|
# CHECK: $ "env" "-u" "FOO" "BAR=3" "not" "rm" "{{.*}}.no-such-file"
|
|
# CHECK: Error: 'env' cannot call 'rm'
|
|
# CHECK: error: command failed with exit status: {{.*}}
|
|
|
|
# CHECK: FAIL: shtest-env :: env-calls-rm.txt ({{[^)]*}})
|
|
# CHECK: $ "env" "-u" "FOO" "BAR=3" "rm" "foobar"
|
|
# CHECK: Error: 'env' cannot call 'rm'
|
|
# CHECK: error: command failed with exit status: {{.*}}
|
|
|
|
# CHECK: PASS: shtest-env :: env-u.txt ({{[^)]*}})
|
|
# CHECK: $ "{{[^"]*}}" "print_environment.py"
|
|
# CHECK: $ "env" "-u" "FOO" "{{[^"]*}}" "print_environment.py"
|
|
# CHECK: $ "env" "-u" "FOO" "-u" "BAR" "{{[^"]*}}" "print_environment.py"
|
|
# CHECK-NOT: ${{.*}}print_environment.py
|
|
|
|
# CHECK: PASS: shtest-env :: env.txt ({{[^)]*}})
|
|
# CHECK: $ "env" "A_FOO=999" "{{[^"]*}}" "print_environment.py"
|
|
# CHECK: $ "env" "A_FOO=1" "B_BAR=2" "C_OOF=3" "{{[^"]*}}" "print_environment.py"
|
|
# CHECK-NOT: ${{.*}}print_environment.py
|
|
|
|
# CHECK: PASS: shtest-env :: mixed.txt ({{[^)]*}})
|
|
# CHECK: $ "env" "A_FOO=999" "-u" "FOO" "{{[^"]*}}" "print_environment.py"
|
|
# CHECK: $ "env" "A_FOO=1" "-u" "FOO" "B_BAR=2" "-u" "BAR" "C_OOF=3" "{{[^"]*}}" "print_environment.py"
|
|
# CHECK-NOT: ${{.*}}print_environment.py
|
|
|
|
# CHECK: Passed: 4
|
|
# CHECK: Failed: 12
|
|
# CHECK-NOT: {{.}}
|