Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

run the kernel tests in CI #112

Merged
merged 9 commits into from
Dec 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,15 @@ jobs:
sudo apt-get install -y \
libpopt-dev ncurses-dev automake autoconf pkgconf \
lua5.3 liblua5.3-dev libmunge-dev libwrap0-dev libcap-dev \
libattr1-dev ${{matrix.cc}}
libattr1-dev dbench attr scrub ${{matrix.cc}}
- name: Display configuration
run: |
echo "C compiler:"
${CC} --version
echo "Kernel:"
uname -r
echo "/tmp file system:"
df /tmp
env:
CC: ${{matrix.cc}}
- name: autogen
Expand All @@ -34,5 +38,7 @@ jobs:
run: make
- name: make check
run: make check
- name: check with linux/9p
run: sudo make check -C tests/kern
- name: make distcheck
run: make distcheck
66 changes: 0 additions & 66 deletions config/dbench.m4

This file was deleted.

4 changes: 0 additions & 4 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,6 @@ m4_ifndef([PKG_PROG_PKG_CONFIG],
##
PKG_CHECK_MODULES([ncurses], [ncurses])

# dbench is conditionally compiled for 'make check'
DBENCH

##
# Checks for header files.
##
Expand Down Expand Up @@ -239,7 +236,6 @@ AC_CONFIG_FILES( \
tests/misc/Makefile \
tests/kern/Makefile \
tests/kern/fstest/Makefile \
tests/kern/dbench/Makefile \
tests/kern/postmark/Makefile \
tests/kern/fsx/Makefile \
tests/kern/fsstress/Makefile \
Expand Down
7 changes: 2 additions & 5 deletions tests/kern/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ check_PROGRAMS = \
pathwalk

SUBDIRS = fstest postmark fsx fsstress
if DBENCH
SUBDIRS += dbench
endif

TESTS_ENVIRONMENT = env
TESTS_ENVIRONMENT += "PATH_DIOD=$(top_builddir)/diod/diod"
Expand All @@ -29,9 +26,9 @@ TESTS_ENVIRONMENT += "${srcdir}/runtest"

TESTS = t05 t06 t07 t12 t13 t14 t15 t16 t17 t18 t19 t22 \
t23 t24 t25 t26 t27 t28 t29 t30 t31 t32 t33 \
t34 t35 t36 t37 t38 t39 t40 t41 t42 t43 t44 t45 t46 t47
t35 t36 t37 t38 t39 t40 t41 t42 t43 t44 t45 t46 t47

XFAIL_TESTS = t19 t23 t32 t37 t43 t47 t48 t49
XFAIL_TESTS = t19 t23 t37 t43 t48 t49

CLEANFILES = *.out *.diff *.diod *.postmark *.dbench

Expand Down
Loading
Loading