OLD | NEW |
1 # GYP (Generate Your Projects) Tests | 1 # Testing |
2 | 2 |
3 -- | |
4 | |
5 Status: Draft (as of 2009-08-18) | |
6 | |
7 Steven Knight <sgk@chromium.org> | |
8 _et al._ | |
9 | |
10 Modified: 2009-08-18 | |
11 | |
12 [TOC] | 3 [TOC] |
13 | 4 |
14 ## Introduction | 5 ## Introduction |
15 | 6 |
16 This document describes the GYP testing infrastructure, | 7 This document describes the GYP testing infrastructure, |
17 as provided by the `TestGyp.py` module. | 8 as provided by the `TestGyp.py` module. |
18 | 9 |
19 These tests emphasize testing the _behavior_ of the | 10 These tests emphasize testing the _behavior_ of the |
20 various GYP-generated build configurations: | 11 various GYP-generated build configurations: |
21 Visual Studio, Xcode, SCons, Make, etc. | 12 Visual Studio, Xcode, SCons, Make, etc. |
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
450 Passes the test, reporting `PASSED` on standard output and exiting with an exit | 441 Passes the test, reporting `PASSED` on standard output and exiting with an exit |
451 status of `0`. | 442 status of `0`. |
452 | 443 |
453 ``` | 444 ``` |
454 test.no_result() | 445 test.no_result() |
455 ``` | 446 ``` |
456 | 447 |
457 Indicates the test had no valid result (i.e., the conditions could not be | 448 Indicates the test had no valid result (i.e., the conditions could not be |
458 tested because of an external factor like a full file system). Reports `NO | 449 tested because of an external factor like a full file system). Reports `NO |
459 RESULT` on standard output and exits with a status of `2`. | 450 RESULT` on standard output and exits with a status of `2`. |
OLD | NEW |