diff --git a/tests/mergesort_nonsym_1.c.disabled b/tests/mergesort_nonsym_1.c similarity index 85% rename from tests/mergesort_nonsym_1.c.disabled rename to tests/mergesort_nonsym_1.c index 5828e2b..a2f0c90 100644 --- a/tests/mergesort_nonsym_1.c.disabled +++ b/tests/mergesort_nonsym_1.c @@ -1,15 +1,15 @@ /* - * Copyright 2018 Yury Gribov + * Copyright 2018-2024 Yury Gribov * * Use of this source code is governed by MIT license that can be * found in the LICENSE.txt file. */ -#include +#include char aa[] = { 1, 2, 3 }; -// CFLAGS: -lbsd +// REQUIRE: bsd // CHECK: comparison function is not symmetric int cmp(const void *pa, const void *pb) { char a = *(const char *)pa;