File: mangled_names.test

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (26 lines) | stat: -rw-r--r-- 1,454 bytes parent folder | download | duplicates (12)
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
## Basic test checking that update_cc_test_checks.py works as expected for
## functions with mangled names
# RUN: cp -f %S/Inputs/mangled_names.c %t.c && %update_cc_test_checks -v %t.c
# RUN: diff -u %t.c %S/Inputs/mangled_names.c.expected
## Check that running the script again does not change the result:
# RUN: %update_cc_test_checks -v %t.c
# RUN: diff -u %t.c %S/Inputs/mangled_names.c.expected
## Also try the --function-signature flag
# RUN: %update_cc_test_checks %t.c --function-signature
# RUN: diff -u %t.c %S/Inputs/mangled_names.c.funcsig.expected
## Running it again should implicitly add the function-signature flag due to UTC_ARGS:
# RUN: %update_cc_test_checks %t.c
# RUN: diff -u %t.c %S/Inputs/mangled_names.c.funcsig.expected
## Verify that running without the --function-signature flag removes the -SAME: lines:
## We have to remove the UTC_ARGS comment first:
# RUN: grep -v UTC_ARGS %t.c > %t-no-args.c
# RUN: %update_cc_test_checks %t-no-args.c
# RUN: diff -u %t-no-args.c %S/Inputs/mangled_names.c.expected
## Also try --version 2
# RUN: %update_cc_test_checks %t.c --function-signature --version 2
# RUN: diff -u %t.c %S/Inputs/mangled_names.c.funcsig.v2.expected
## Restore the original file without --function-signature and check that
## --version 2 will implicitly enable it.
# RUN: cp -f %S/Inputs/mangled_names.c %t.c
# RUN: %update_cc_test_checks %t.c --version 2
# RUN: diff -u %t.c %S/Inputs/mangled_names.c.v2.expected