summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2019-01-22 14:42:13 +0100
committerDaniel Vetter <daniel.vetter@ffwll.ch>2019-01-29 11:09:40 +0100
commitfe42d8387480a4fe3dc4183680432a30db4c3aa3 (patch)
tree606fa9c5497fe868e4e97d04b9251fbcb3b59c74
parent67993c1d3be9865c12898e77b88de27c9bbfb776 (diff)
automake: Drop runner build support
Main use case here is CI, which already builds using meson. Acked-by: Petri Latvala <petri.latvala@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
-rw-r--r--Makefile.am4
-rw-r--r--configure.ac14
-rw-r--r--runner/Makefile.am53
-rw-r--r--runner/testdata/Makefile.am25
4 files changed, 0 insertions, 96 deletions
diff --git a/Makefile.am b/Makefile.am
index 8bcdb65c..1cc98264 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -27,10 +27,6 @@ if BUILD_TESTS
SUBDIRS += tests
endif
-if BUILD_RUNNER
-SUBDIRS += runner
-endif
-
if BUILD_X86
SUBDIRS += overlay benchmarks
endif
diff --git a/configure.ac b/configure.ac
index 807df01b..9b3213e1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -291,18 +291,6 @@ fi
AM_CONDITIONAL(BUILD_TESTS, [test "x$BUILD_TESTS" = xyes])
AC_DEFINE_UNQUOTED(TARGET_CPU_PLATFORM, ["$host_cpu"], [Target platform])
-AC_ARG_ENABLE(runner,
- AS_HELP_STRING([--disable-runner],
- [Enable building test runner (default: auto)]),
- [BUILD_RUNNER=$enableval], [BUILD_RUNNER="auto"])
-if test "x$BUILD_RUNNER" = xauto; then
- PKG_CHECK_EXISTS([json-c], [BUILD_RUNNER=yes], [BUILD_RUNNER=no])
-fi
-if test "x$BUILD_RUNNER" = xyes; then
- PKG_CHECK_MODULES(JSONC, [json-c])
-fi
-AM_CONDITIONAL(BUILD_RUNNER, [test "x$BUILD_RUNNER" = xyes])
-
files="broadwell cherryview haswell ivybridge sandybridge valleyview skylake"
for file in $files; do
REGISTER_FILES="$REGISTER_FILES $file `cat $srcdir/tools/registers/$file`"
@@ -326,8 +314,6 @@ AC_CONFIG_FILES([
include/Makefile
include/drm-uapi/Makefile
overlay/Makefile
- runner/Makefile
- runner/testdata/Makefile
])
AC_CONFIG_FILES([tools/intel_aubdump], [chmod +x tools/intel_aubdump])
diff --git a/runner/Makefile.am b/runner/Makefile.am
deleted file mode 100644
index b55cf797..00000000
--- a/runner/Makefile.am
+++ /dev/null
@@ -1,53 +0,0 @@
-
-if BUILD_RUNNER
-
-SUBDIRS = testdata
-
-runnerlib = librunner.la
-noinst_LTLIBRARIES = $(runnerlib)
-librunner_la_SOURCES = \
- settings.c \
- job_list.c \
- executor.c \
- resultgen.c \
- $(NULL)
-
-bin_PROGRAMS = \
- igt_runner \
- igt_resume \
- igt_results \
- $(NULL)
-
-LDADD = $(runnerlib) $(JSONC_LIBS) ../lib/libintel_tools.la
-
-igt_runner_SOURCES = runner.c
-igt_resume_SOURCES = resume.c
-igt_results_SOURCES = results.c
-
-AM_CFLAGS = $(JSONC_CFLAGS) \
- $(CWARNFLAGS) -Wno-unused-result $(DEBUG_CFLAGS) \
- -I$(srcdir)/.. \
- -I$(srcdir)/../lib \
- -D_GNU_SOURCE
-
-TESTS = runner_test runner_json_test
-check_PROGRAMS = runner_test runner_json_test
-
-runner_test_SOURCES = runner_tests.c
-runner_test_CFLAGS = -DTESTDATA_DIRECTORY=\"$(abs_builddir)/testdata\" \
- -I$(top_srcdir)/include/drm-uapi \
- $(DRM_CFLAGS) $(CAIRO_CFLAGS) $(LIBUDEV_CFLAGS) \
- -I$(srcdir)/.. \
- -I$(srcdir)/../lib \
- -D_GNU_SOURCE
-
-runner_json_test_SOURCES = runner_json_tests.c
-runner_json_test_CFLAGS = -DJSON_TESTS_DIRECTORY=\"$(abs_builddir)/json_tests_data\" \
- $(JSONC_CFLAGS) \
- -I$(top_srcdir)/include/drm-uapi \
- $(DRM_CFLAGS) $(CAIRO_CFLAGS) $(LIBUDEV_CFLAGS) \
- -I$(srcdir)/.. \
- -I$(srcdir)/../lib \
- -D_GNU_SOURCE
-
-endif
diff --git a/runner/testdata/Makefile.am b/runner/testdata/Makefile.am
deleted file mode 100644
index fe225d8d..00000000
--- a/runner/testdata/Makefile.am
+++ /dev/null
@@ -1,25 +0,0 @@
-testdata_progs = no-subtests skippers successtest
-
-noinst_PROGRAMS = $(testdata_progs)
-
-test-list.txt: Makefile
- @echo TESTLIST > $@
- @echo ${testdata_progs} >> $@
- @echo END TESTLIST >> $@
-
-noinst_DATA = test-list.txt
-
-all-local: .gitignore
-.gitignore: Makefile.am
- @echo "$(testdata_progs) test-list.txt /.gitignore" | sed 's/\s\+/\n/g' | sort > $@
-
-CLEANFILES = test-list.txt .gitignore
-
-AM_CFLAGS = $(CWARNFLAGS) -Wno-unused-result $(DEBUG_CFLAGS) \
- -I$(top_srcdir)/include/drm-uapi \
- -I$(srcdir)/../.. \
- -I$(srcdir)/../../lib \
- $(DRM_CFLAGS) $(CAIRO_CFLAGS) $(LIBUDEV_CFLAGS) \
- -D_GNU_SOURCE
-
-LDADD = $(top_builddir)/lib/libintel_tools.la