From: Sam James Date: Fri, 20 Sep 2024 09:58:06 +0000 (+0100) Subject: testsuite: fix dejagnu directive typo (#859) X-Git-Tag: upstream/3.4.7~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f7e4992789fa563b4cc74521c37ff703555da21c;p=platform%2Fupstream%2Flibffi.git testsuite: fix dejagnu directive typo (#859) --- diff --git a/testsuite/libffi.complex/complex_int.c b/testsuite/libffi.complex/complex_int.c index bac3190..cae5c45 100644 --- a/testsuite/libffi.complex/complex_int.c +++ b/testsuite/libffi.complex/complex_int.c @@ -76,7 +76,7 @@ int main (void) printf ("%d,%di %d,%di, x %d 1234, y %d 11110\n", (int)tc_result, (int)(tc_result * -I), 2, 8, tc_int_arg_x, tc_y); - /* dg-output "-2,8i 2,8i, x 1234 1234, y 11110 11110" */ + /* { dg-output "-2,8i 2,8i, x 1234 1234, y 11110 11110" } */ CHECK (creal (tc_result) == -2); CHECK (cimag (tc_result) == 8); CHECK (tc_int_arg_x == 1234);