source: mainline/uspace/lib/pcut/tests/manytests.c@ 3f932a7e

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 3f932a7e was 3f932a7e, checked in by Jiri Svoboda <jiri@…>, 7 years ago

PCUT_INIT declaration also needs a terminating semicolon.

  • Property mode set to 100644
File size: 3.7 KB
RevLine 
[01579ad]1/*
2 * Copyright (c) 2012-2013 Vojtech Horky
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
[134ac5d]29#include <pcut/pcut.h>
[01579ad]30
31/*
32 * Just test how it will look like if a huge number of tests would
33 * be present in the suite.
34 */
35
[3f932a7e]36PCUT_INIT;
[01579ad]37
38PCUT_TEST(my_test_001) { }
39PCUT_TEST(my_test_002) { }
40PCUT_TEST(my_test_003) { }
41PCUT_TEST(my_test_004) { }
42PCUT_TEST(my_test_005) { }
43PCUT_TEST(my_test_006) { }
44PCUT_TEST(my_test_007) { }
45PCUT_TEST(my_test_008) { }
46PCUT_TEST(my_test_009) { }
47PCUT_TEST(my_test_010) { }
48PCUT_TEST(my_test_011) { }
49PCUT_TEST(my_test_012) { }
50PCUT_TEST(my_test_013) { }
51PCUT_TEST(my_test_014) { }
52PCUT_TEST(my_test_015) { }
53PCUT_TEST(my_test_016) { }
54PCUT_TEST(my_test_017) { }
55PCUT_TEST(my_test_018) { }
56PCUT_TEST(my_test_019) { }
57PCUT_TEST(my_test_020) { }
58PCUT_TEST(my_test_021) { }
59PCUT_TEST(my_test_022) { }
60PCUT_TEST(my_test_023) { }
61PCUT_TEST(my_test_024) { }
62PCUT_TEST(my_test_025) { }
63PCUT_TEST(my_test_026) { }
64PCUT_TEST(my_test_027) { }
65PCUT_TEST(my_test_028) { }
66PCUT_TEST(my_test_029) { }
67PCUT_TEST(my_test_030) { }
68PCUT_TEST(my_test_031) { }
69PCUT_TEST(my_test_032) { }
70PCUT_TEST(my_test_033) { }
71PCUT_TEST(my_test_034) { }
72PCUT_TEST(my_test_035) { }
73PCUT_TEST(my_test_036) { }
74PCUT_TEST(my_test_037) { }
75PCUT_TEST(my_test_038) { }
76PCUT_TEST(my_test_039) { }
77PCUT_TEST(my_test_040) { }
78PCUT_TEST(my_test_041) { }
79PCUT_TEST(my_test_042) { }
80PCUT_TEST(my_test_043) { }
81PCUT_TEST(my_test_044) { }
82PCUT_TEST(my_test_045) { }
83PCUT_TEST(my_test_046) { }
84PCUT_TEST(my_test_047) { }
85PCUT_TEST(my_test_048) { }
86PCUT_TEST(my_test_049) { }
87PCUT_TEST(my_test_050) { }
88PCUT_TEST(my_test_051) { }
89PCUT_TEST(my_test_052) { }
90PCUT_TEST(my_test_053) { }
91PCUT_TEST(my_test_054) { }
92PCUT_TEST(my_test_055) { }
93PCUT_TEST(my_test_056) { }
94PCUT_TEST(my_test_057) { }
95PCUT_TEST(my_test_058) { }
96PCUT_TEST(my_test_059) { }
97PCUT_TEST(my_test_060) { }
98PCUT_TEST(my_test_061) { }
99PCUT_TEST(my_test_062) { }
100PCUT_TEST(my_test_063) { }
101PCUT_TEST(my_test_064) { }
102PCUT_TEST(my_test_065) { }
103PCUT_TEST(my_test_066) { }
104PCUT_TEST(my_test_067) { }
105PCUT_TEST(my_test_068) { }
106PCUT_TEST(my_test_069) { }
107PCUT_TEST(my_test_070) { }
108PCUT_TEST(my_test_071) { }
109PCUT_TEST(my_test_072) { }
110PCUT_TEST(my_test_073) { }
111PCUT_TEST(my_test_074) { }
112PCUT_TEST(my_test_075) { }
113PCUT_TEST(my_test_076) { }
114PCUT_TEST(my_test_077) { }
115PCUT_TEST(my_test_078) { }
116PCUT_TEST(my_test_079) { }
117PCUT_TEST(my_test_080) { }
118
119
[013e5d32]120PCUT_MAIN();
Note: See TracBrowser for help on using the repository browser.