From 5b75fc3dd2497bf2c76a15b89667802b4d71eb10 Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Fri, 15 Mar 2024 11:24:27 -0400 Subject: [PATCH] tests: rename `test_argpar.c` -> `test-argpar.c` Follows the convention of other EfficiOS projects (well of Babeltrace 2 at least, which I also maintain as of this date). Signed-off-by: Philippe Proulx Change-Id: Ib25f6e08f728969d7d6a2a9d81d1328c7d503638 --- .gitignore | 2 +- tests/Makefile.am | 6 +++--- tests/{test_argpar.c => test-argpar.c} | 0 3 files changed, 4 insertions(+), 4 deletions(-) rename tests/{test_argpar.c => test-argpar.c} (100%) diff --git a/.gitignore b/.gitignore index ee42aaa..98fb4df 100644 --- a/.gitignore +++ b/.gitignore @@ -28,5 +28,5 @@ missing test-driver Makefile Makefile.in -tests/test_argpar +tests/test-argpar Doxyfile diff --git a/tests/Makefile.am b/tests/Makefile.am index fa84fc1..2de6fbf 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -5,11 +5,11 @@ AM_CPPFLAGS = \ -I$(top_srcdir)/tests/tap \ $(GLIB_CFLAGS) -noinst_PROGRAMS = test_argpar -test_argpar_SOURCES = test_argpar.c +noinst_PROGRAMS = test-argpar +test_argpar_SOURCES = test-argpar.c test_argpar_LDADD = \ $(top_builddir)/tests/tap/libtap.la \ $(top_builddir)/argpar/libargpar.la \ $(GLIB_LIBS) -TESTS = test_argpar +TESTS = test-argpar diff --git a/tests/test_argpar.c b/tests/test-argpar.c similarity index 100% rename from tests/test_argpar.c rename to tests/test-argpar.c -- 2.34.1