Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed-rtos mbed HTTPClient VodafoneUSBModem
Tests/Tests.h@52:de6cc9d823ab, 2012-10-11 (annotated)
- Committer:
- ashleymills
- Date:
- Thu Oct 11 10:00:19 2012 +0000
- Revision:
- 52:de6cc9d823ab
- Parent:
- 45:f68fea0831d7
- Child:
- 58:8b63f4c3a5a5
Improved DNS test case to idenfity timeout problem.
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| ashleymills | 3:28336c2e94e4 | 1 | #pragma once |
| ashleymills | 45:f68fea0831d7 | 2 | #include "Test08.h" |
| ashleymills | 23:408199b5d2cb | 3 | #include "Test10.h" |
| nherriot | 7:ec0db221f897 | 4 | #include "Test12.h" |
| nherriot | 16:c89d426c6175 | 5 | #include "Test13.h" |
| nherriot | 31:9231acdde9ff | 6 | #include "Test14.h" |
| nherriot | 28:c630a04a7198 | 7 | #include "Test16.h" |
| ashleymills | 19:26fbed33d4e7 | 8 | #include "Test21.h" |
| ashleymills | 19:26fbed33d4e7 | 9 | #include "Test22.h" |
| ashleymills | 20:18373fb68ad7 | 10 | #include "Test23.h" |
| ashleymills | 22:5b1feecf2aeb | 11 | #include "Test25.h" |
| ashleymills | 22:5b1feecf2aeb | 12 | #include "Test26.h" |
| ashleymills | 19:26fbed33d4e7 | 13 | #include "Test50.h" |
| nherriot | 29:c0e6f198db84 | 14 | #include "Test56.h" |
| ashleymills | 19:26fbed33d4e7 | 15 | |
| nherriot | 31:9231acdde9ff | 16 | const int gAllTests[] = {10,16,12,13,21,22,23,25,26,50}; |
| nherriot | 31:9231acdde9ff | 17 | const int gNumAllTests = 10; |
| ashleymills | 52:de6cc9d823ab | 18 | const int gAutomatedTests[] = {8,10,21,22,23,25,26,50}; |
| ashleymills | 52:de6cc9d823ab | 19 | const int gNumAutomatedTests = 8; |
| nherriot | 31:9231acdde9ff | 20 | const int gInteractiveTests[] = {16,12,14,13}; |
| nherriot | 30:dd2beda340c6 | 21 | const int gNumInteractiveTests = 4; |
| ashleymills | 26:9eefab9e28df | 22 | const int gSoakTests[] = {50}; |
| ashleymills | 26:9eefab9e28df | 23 | const int gNumSoakTests = 1; |
| ashleymills | 22:5b1feecf2aeb | 24 | |
| ashleymills | 22:5b1feecf2aeb | 25 | enum TestProfile { |
| ashleymills | 22:5b1feecf2aeb | 26 | TESTS_ALL, |
| ashleymills | 22:5b1feecf2aeb | 27 | TESTS_AUTOMATED, |
| ashleymills | 22:5b1feecf2aeb | 28 | TESTS_MANUAL, |
| ashleymills | 22:5b1feecf2aeb | 29 | TESTS_SOAK, |
| ashleymills | 22:5b1feecf2aeb | 30 | TESTS_END |
| ashleymills | 22:5b1feecf2aeb | 31 | }; |
| ashleymills | 22:5b1feecf2aeb | 32 | |
| ashleymills | 22:5b1feecf2aeb | 33 | static const int* gTestProfiles[4] = { |
| ashleymills | 26:9eefab9e28df | 34 | gAllTests, |
| ashleymills | 26:9eefab9e28df | 35 | gAutomatedTests, |
| ashleymills | 26:9eefab9e28df | 36 | gInteractiveTests, |
| ashleymills | 26:9eefab9e28df | 37 | gSoakTests |
| ashleymills | 22:5b1feecf2aeb | 38 | }; |
| ashleymills | 22:5b1feecf2aeb | 39 | |
| ashleymills | 22:5b1feecf2aeb | 40 | static const int gTestProfileLengths[4] = { |
| ashleymills | 22:5b1feecf2aeb | 41 | gNumAllTests, |
| ashleymills | 22:5b1feecf2aeb | 42 | gNumAutomatedTests, |
| ashleymills | 22:5b1feecf2aeb | 43 | gNumInteractiveTests, |
| ashleymills | 22:5b1feecf2aeb | 44 | gNumSoakTests |
| nherriot | 28:c630a04a7198 | 45 | }; |
| nherriot | 28:c630a04a7198 | 46 | |
| ashleymills | 45:f68fea0831d7 | 47 | extern const char* gTestDescriptions[]; |
| ashleymills | 45:f68fea0831d7 | 48 | |
| ashleymills | 27:0297dbc3252b | 49 | /* |
| ashleymills | 40:32b0558320ea | 50 | static const char* gTestDescriptions[] = { |
| ashleymills | 40:32b0558320ea | 51 | gTest10Description |
| ashleymills | 40:32b0558320ea | 52 | }; |
| ashleymills | 40:32b0558320ea | 53 | |
| ashleymills | 40:32b0558320ea | 54 | |
| ashleymills | 26:9eefab9e28df | 55 | static const int* gTestDependencies[] = { |
| ashleymills | 26:9eefab9e28df | 56 | gTest10Depends, |
| ashleymills | 26:9eefab9e28df | 57 | gTest12Depends, |
| ashleymills | 26:9eefab9e28df | 58 | gTest13Depends, |
| ashleymills | 26:9eefab9e28df | 59 | gTest21Depends, |
| ashleymills | 26:9eefab9e28df | 60 | gTest22Depends, |
| ashleymills | 26:9eefab9e28df | 61 | gTest23Depends, |
| ashleymills | 26:9eefab9e28df | 62 | gTest25Depends, |
| ashleymills | 26:9eefab9e28df | 63 | gTest26Depends, |
| ashleymills | 26:9eefab9e28df | 64 | gTest50Depends |
| ashleymills | 27:0297dbc3252b | 65 | }; |
| nherriot | 30:dd2beda340c6 | 66 | */ |
| nherriot | 30:dd2beda340c6 | 67 | |
| nherriot | 30:dd2beda340c6 | 68 |

