2 Code shared between multiple testcases.
4 This file contains "main" and support code.
5 Each testcase should implement the following hooks:
8 create_code (gcc_jit_context *ctxt, void * user_data);
10 and, #ifndef TEST_COMPILING_TO_FILE,
13 verify_code (gcc_jit_context *ctxt, gcc_jit_result *result);
19 /* test-threads.c use threads, but dejagnu.h isn't thread-safe; there's a
20 shared "buffer", and the counts of passed/failed etc are globals.
22 The solution is to use macros to rename "pass" and "fail", replacing them
23 with mutex-guarded alternatives. */
24 #ifdef MAKE_DEJAGNU_H_THREADSAFE
25 #define pass dejagnu_pass
26 #define fail dejagnu_fail
27 #define note dejagnu_note
30 #include "jit-dejagnu.h"
32 #ifdef MAKE_DEJAGNU_H_THREADSAFE
38 static char test
[1024];
40 #define CHECK_NON_NULL(PTR) \
44 pass ("%s: %s: %s is non-null", \
45 test, __func__, #PTR); \
49 fail ("%s: %s: %s is NULL", \
50 test, __func__, #PTR); \
55 #define CHECK_VALUE(ACTUAL, EXPECTED) \
57 if ((ACTUAL) == (EXPECTED)) \
59 pass ("%s: %s: actual: %s == expected: %s", \
60 test, __func__, #ACTUAL, #EXPECTED); \
64 fail ("%s: %s: actual: %s != expected: %s", \
65 test, __func__, #ACTUAL, #EXPECTED); \
66 fprintf (stderr, "incorrect value\n"); \
71 #define CHECK_VECTOR_VALUE(LEN, ACTUAL, EXPECTED) \
73 for (int __check_vector_it = 0; __check_vector_it < LEN; ++__check_vector_it) { \
74 if ((ACTUAL)[__check_vector_it] != (EXPECTED)[__check_vector_it]) { \
75 fail ("%s: %s: actual: %s != expected: %s (position %d)", \
76 test, __func__, #ACTUAL, #EXPECTED, __check_vector_it); \
77 fprintf (stderr, "incorrect value\n"); \
81 pass ("%s: %s: actual: %s == expected: %s", \
82 test, __func__, #ACTUAL, #EXPECTED); \
86 #define CHECK_DOUBLE_VALUE(ACTUAL, EXPECTED) \
88 double expected = (EXPECTED); \
89 double actual = (ACTUAL); \
90 if (abs (actual - expected) < 0.00001) \
92 pass ("%s: %s: actual: %s == expected: %s", \
93 __func__, test, #ACTUAL, #EXPECTED); \
97 fail ("%s: %s: actual: %s != expected: %s", \
98 __func__, test, #ACTUAL, #EXPECTED); \
99 fprintf (stderr, "incorrect value: %f\n", actual); \
104 #define CHECK_STRING_VALUE(ACTUAL, EXPECTED) \
105 check_string_value (__func__, (ACTUAL), (EXPECTED));
107 #define CHECK_STRING_STARTS_WITH(ACTUAL, EXPECTED_PREFIX) \
108 check_string_starts_with (__func__, (ACTUAL), (EXPECTED_PREFIX));
110 #define CHECK_STRING_CONTAINS(ACTUAL, EXPECTED_SUBSTRING) \
111 check_string_contains (__func__, #ACTUAL, (ACTUAL), (EXPECTED_SUBSTRING));
113 #define CHECK(COND) \
117 pass ("%s: %s: %s", test, __func__, #COND); \
121 fail ("%s: %s: %s", test, __func__, #COND); \
126 #define CHECK_NO_ERRORS(CTXT) \
128 const char *err = gcc_jit_context_get_first_error (CTXT); \
130 fail ("%s: %s: error unexpectedly occurred: %s", test, __func__, err); \
132 pass ("%s: %s: no errors occurred", test, __func__); \
135 /* Hooks that testcases should provide. */
137 create_code (gcc_jit_context
*ctxt
, void * user_data
);
139 #ifndef TEST_COMPILING_TO_FILE
141 verify_code (gcc_jit_context
*ctxt
, gcc_jit_result
*result
);
144 extern void check_string_value (const char *funcname
,
145 const char *actual
, const char *expected
);
148 check_string_starts_with (const char *funcname
,
150 const char *expected_prefix
);
153 check_string_contains (const char *funcname
,
156 const char *expected_substring
);
158 /* Implement framework needed for turning the testcase hooks into an
159 executable. test-combination.c and test-threads.c each combine multiple
160 testcases into larger testcases, so we have COMBINED_TEST as a way of
161 temporarily turning off this part of harness.h. */
162 #ifndef COMBINED_TEST
164 void check_string_value (const char *funcname
,
165 const char *actual
, const char *expected
)
167 if (actual
&& !expected
)
169 fail ("%s: %s: actual: \"%s\" != expected: NULL",
170 funcname
, test
, actual
);
171 fprintf (stderr
, "incorrect value\n");
174 if (expected
&& !actual
)
176 fail ("%s: %s: actual: NULL != expected: \"%s\"",
177 funcname
, test
, expected
);
178 fprintf (stderr
, "incorrect value\n");
181 if (actual
&& expected
)
183 if (strcmp (actual
, expected
))
185 fail ("%s: %s: actual: \"%s\" != expected: \"%s\"",
186 test
, funcname
, actual
, expected
);
187 fprintf (stderr
, "incorrect valuen");
190 pass ("%s: %s: actual: \"%s\" == expected: \"%s\"",
191 test
, funcname
, actual
, expected
);
194 pass ("%s: actual: NULL == expected: NULL");
198 check_string_starts_with (const char *funcname
,
200 const char *expected_prefix
)
204 fail ("%s: %s: actual: NULL != expected prefix: \"%s\"",
205 test
, funcname
, expected_prefix
);
206 fprintf (stderr
, "incorrect value\n");
210 if (strncmp (actual
, expected_prefix
, strlen (expected_prefix
)))
212 fail ("%s: %s: actual: \"%s\" did not begin with expected prefix: \"%s\"",
213 test
, funcname
, actual
, expected_prefix
);
214 fprintf (stderr
, "incorrect value\n");
218 pass ("%s: actual: \"%s\" begins with expected prefix: \"%s\"",
219 test
, actual
, expected_prefix
);
223 check_string_contains (const char *funcname
,
226 const char *expected_substring
)
230 fail ("%s: %s, %s: actual: NULL does not contain expected substring: \"%s\"",
231 test
, funcname
, name
, expected_substring
);
232 fprintf (stderr
, "incorrect value\n");
236 if (!strstr (actual
, expected_substring
))
238 fail ("%s: %s: %s: actual: \"%s\" did not contain expected substring: \"%s\"",
239 test
, funcname
, name
, actual
, expected_substring
);
240 fprintf (stderr
, "incorrect value\n");
244 pass ("%s: %s: %s: found substring: \"%s\"",
245 test
, funcname
, name
, expected_substring
);
248 #ifndef TEST_ESCHEWS_SET_OPTIONS
249 static void set_options (gcc_jit_context
*ctxt
, const char *argv0
)
251 /* Set up options. */
252 gcc_jit_context_set_str_option (
254 GCC_JIT_STR_OPTION_PROGNAME
,
256 gcc_jit_context_set_int_option (
258 GCC_JIT_INT_OPTION_OPTIMIZATION_LEVEL
,
260 gcc_jit_context_set_bool_option (
262 GCC_JIT_BOOL_OPTION_DEBUGINFO
,
264 gcc_jit_context_set_bool_option (
266 GCC_JIT_BOOL_OPTION_DUMP_INITIAL_TREE
,
268 gcc_jit_context_set_bool_option (
270 GCC_JIT_BOOL_OPTION_DUMP_INITIAL_GIMPLE
,
272 gcc_jit_context_set_bool_option (
274 GCC_JIT_BOOL_OPTION_SELFCHECK_GC
,
276 gcc_jit_context_set_bool_option (
278 GCC_JIT_BOOL_OPTION_DUMP_SUMMARY
,
280 /* Make it easier to compare error messages by disabling colorization,
281 rather then have them be affected by whether stderr is going to a tty. */
282 gcc_jit_context_add_command_line_option
283 (ctxt
, "-fdiagnostics-color=never");
285 #endif /* #ifndef TEST_ESCHEWS_SET_OPTIONS */
287 /* Concatenate two strings. The result must be released using "free". */
290 concat_strings (const char *prefix
, const char *suffix
)
292 char *result
= (char *)malloc (strlen (prefix
) + strlen (suffix
) + 1);
295 fail ("malloc failure");
298 strcpy (result
, prefix
);
299 strcpy (result
+ strlen (prefix
), suffix
);
300 result
[strlen (prefix
) + strlen (suffix
)] = '\0';
304 #ifndef TEST_ESCHEWS_TEST_JIT
305 /* Set up logging to a logfile of the form "test-FOO.exe.log.txt".
308 SRCDIR/gcc/testsuite/jit.dg/test-hello-world.c
310 BUILDDIR/gcc/testsuite/jit/test-hello-world.c.exe
312 BUILDDIR/gcc/testsuite/jit/test-hello-world.c.exe.log.txt
314 The logfile must be closed by the caller.
316 Note that not every testcase enables logging. */
318 set_up_logging (gcc_jit_context
*ctxt
, const char *argv0
)
320 const char *logfile_name_suffix
= ".log.txt";
321 char *logfile_name
= NULL
;
322 FILE *logfile
= NULL
;
324 /* Build a logfile name of the form "test-FOO.exe.log.txt". */
325 logfile_name
= concat_strings (argv0
, logfile_name_suffix
);
328 logfile
= fopen (logfile_name
, "w");
329 CHECK_NON_NULL (logfile
);
333 gcc_jit_context_set_logfile (ctxt
, logfile
, 0, 0);
338 /* Exercise the API entrypoint:
339 gcc_jit_context_dump_reproducer_to_file
340 by calling it on the context, using the path expected by jit.exp. */
342 dump_reproducer (gcc_jit_context
*ctxt
, const char *argv0
)
344 char *reproducer_name
;
345 reproducer_name
= concat_strings (argv0
, ".reproducer.c");
346 if (!reproducer_name
)
348 note ("%s: writing reproducer to %s", test
, reproducer_name
);
349 gcc_jit_context_dump_reproducer_to_file (ctxt
, reproducer_name
);
350 free (reproducer_name
);
353 /* Run one iteration of the test. */
355 test_jit (const char *argv0
, void *user_data
)
357 gcc_jit_context
*ctxt
;
359 #ifndef TEST_COMPILING_TO_FILE
360 gcc_jit_result
*result
;
363 #ifdef TEST_COMPILING_TO_FILE
364 unlink (OUTPUT_FILENAME
);
367 ctxt
= gcc_jit_context_acquire ();
370 fail ("gcc_jit_context_acquire failed");
374 logfile
= set_up_logging (ctxt
, argv0
);
376 set_options (ctxt
, argv0
);
378 create_code (ctxt
, user_data
);
380 dump_reproducer (ctxt
, argv0
);
382 #ifdef TEST_COMPILING_TO_FILE
383 gcc_jit_context_compile_to_file (ctxt
,
386 CHECK_NO_ERRORS (ctxt
);
387 #else /* #ifdef TEST_COMPILING_TO_FILE */
388 /* This actually calls into GCC and runs the build, all
389 in a mutex for now. */
390 result
= gcc_jit_context_compile (ctxt
);
392 verify_code (ctxt
, result
);
395 gcc_jit_context_release (ctxt
);
397 #ifndef TEST_COMPILING_TO_FILE
398 /* Once we're done with the code, this unloads the built .so file: */
399 gcc_jit_result_release (result
);
405 #endif /* #ifndef TEST_ESCHEWS_TEST_JIT */
407 /* We want to prefix all unit test results with the test, but dejagnu.exp's
408 host_execute appears to get confused by the leading "./" of argv0,
409 leading to all tests simply reporting as a single period character ".".
411 Hence strip out the final component of the path to the program name,
412 so that we can use that in unittest reports. */
414 extract_progname (const char *argv0
)
418 p
= argv0
+ strlen (argv0
);
419 while (p
!= argv0
&& p
[-1] != '/')
424 #ifndef TEST_PROVIDES_MAIN
426 main (int argc
, char **argv
)
430 for (i
= 1; i
<= 5; i
++)
432 snprintf (test
, sizeof (test
),
433 "%s iteration %d of %d",
434 extract_progname (argv
[0]),
437 //printf ("ITERATION %d\n", i);
438 test_jit (argv
[0], NULL
);
446 #endif /* #ifndef TEST_PROVIDES_MAIN */
448 #endif /* #ifndef COMBINED_TEST */