File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -56,23 +56,23 @@ development cycle. To invoke LLVM's `lit.py` script directly, it must be
56
56
configured to use your local build directory. For example:
57
57
58
58
```
59
- % ${LLVM_SOURCE_ROOT}/utils/lit/lit.py -sv ${SWIFT_BUILD_DIR}/test-iphonesimulator-i386 /Parse/
59
+ % ${LLVM_SOURCE_ROOT}/utils/lit/lit.py -sv ${SWIFT_BUILD_DIR}/test-macosx-x86_64 /Parse/
60
60
```
61
61
62
- This runs the tests in the 'test/Parse/' directory targeting the 32 -bit iOS
63
- Simulator. The `` -sv `` options give you a nice progress bar and only show you
62
+ This runs the tests in the 'test/Parse/' directory targeting 64 -bit macOS.
63
+ The `` -sv `` options give you a nice progress bar and only show you
64
64
output from the tests that fail.
65
65
66
66
One downside of using this form is that you're appending relative paths from
67
67
the source directory to the test directory in your build directory. (That is,
68
68
there may not actually be a directory named 'Parse' in
69
- 'test-iphonesimulator-i386 /'; the invocation works because there is one in the
69
+ 'test-macosx-x86_64 /'; the invocation works because there is one in the
70
70
source 'test/' directory.) There is a more verbose form that specifies the
71
71
testing configuration explicitly, which then allows you to test files
72
72
regardless of location.
73
73
74
74
```
75
- % ${LLVM_SOURCE_ROOT}/utils/lit/lit.py -sv --param swift_site_config=${SWIFT_BUILD_DIR}/test-iphonesimulator-i386 /lit.site.cfg ${SWIFT_SOURCE_ROOT}/test/Parse/
75
+ % ${LLVM_SOURCE_ROOT}/utils/lit/lit.py -sv --param swift_site_config=${SWIFT_BUILD_DIR}/test-macosx-x86_64 /lit.site.cfg ${SWIFT_SOURCE_ROOT}/test/Parse/
76
76
```
77
77
78
78
For more complicated configuration, copy the invocation from one of the build
You can’t perform that action at this time.
0 commit comments