configure: remove -Wno-format-nonliteral
[babeltrace.git] / tests / param-validation / test_param_validation.c
index 4940936597708107a381c3635c0b66de5fca9bf1..fa1401046e23b2d9acf32734edcdd0010e0d652c 100644 (file)
@@ -1,18 +1,7 @@
 /*
- * Copyright (c) EfficiOS Inc.
+ * SPDX-License-Identifier: GPL-2.0-only
  *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; under version 2 of the License.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ * Copyright (C) EfficiOS Inc.
  */
 
 #include "tap/tap.h"
@@ -51,20 +40,19 @@ enum bt_param_validation_status run_test(
        status = bt_param_validation_validate(params, entries, &validate_error);
 
        if (expected_error) {
-               const char *fmt;
-
                /* We expect a failure. */
                ok(status == BT_PARAM_VALIDATION_STATUS_VALIDATION_ERROR,
                        "%s: validation fails", test_name);
                ok(validate_error, "%s: error string is not NULL", test_name);
 
-               fmt = "%s: error string contains expected string";
+#define BT_FMT "%s: error string contains expected string"
                if (validate_error && strstr(validate_error, expected_error)) {
-                       pass(fmt, test_name);
+                       pass(BT_FMT, test_name);
                } else {
-                       fail(fmt, test_name);
+                       fail(BT_FMT, test_name);
                        diag("could not find `%s` in `%s`", expected_error, validate_error);
                }
+#undef BT_FMT
 
                g_free(validate_error);
        } else {
This page took 0.023362 seconds and 4 git commands to generate.