diff --git a/.dockerignore b/.dockerignore index 5b42b0d4..a32a711f 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,6 +1,6 @@ # Ignore binaries to avoid performance issues target/ -regression/build/ +test/build/ # QEMU log file qemu.log diff --git a/.github/workflows/benchmark_asterinas.yml b/.github/workflows/benchmark_asterinas.yml index cd22b91b..8616c409 100644 --- a/.github/workflows/benchmark_asterinas.yml +++ b/.github/workflows/benchmark_asterinas.yml @@ -27,7 +27,7 @@ jobs: - uses: actions/checkout@v2 - name: Set up the environment run: | - chmod +x regression/benchmark/bench_linux_and_aster.sh + chmod +x test/benchmark/bench_linux_and_aster.sh # Set up git due to the network issue on the self-hosted runner git config --global --add safe.directory /__w/asterinas/asterinas git config --global http.sslVerify false @@ -40,13 +40,13 @@ jobs: max_attempts: 3 command: | make install_osdk - bash regression/benchmark/bench_linux_and_aster.sh ${{ matrix.benchmark }} + bash test/benchmark/bench_linux_and_aster.sh ${{ matrix.benchmark }} on_retry_command: make clean - name: Prepare threshold values run: | echo "Configuring thresholds..." - ALERT_THRESHOLD=$(jq -r '.alert_threshold' regression/benchmark/${{ matrix.benchmark }}/config.json) + ALERT_THRESHOLD=$(jq -r '.alert_threshold' test/benchmark/${{ matrix.benchmark }}/config.json) echo "ALERT_THRESHOLD=$ALERT_THRESHOLD" >> $GITHUB_ENV - name: Store benchmark results diff --git a/.github/workflows/test_asterinas.yml b/.github/workflows/test_asterinas.yml index ba6f81fc..ed7512b2 100644 --- a/.github/workflows/test_asterinas.yml +++ b/.github/workflows/test_asterinas.yml @@ -83,6 +83,6 @@ jobs: SYSCALL_TEST_DIR=/exfat EXTRA_BLOCKLISTS_DIRS=blocklists.exfat \ ENABLE_KVM=0 BOOT_PROTOCOL=linux-efi-handover64 RELEASE=1 - - name: Regression Test (Linux EFI Handover Boot Protocol) - id: regression_test_linux - run: make run AUTO_TEST=regression ENABLE_KVM=0 BOOT_PROTOCOL=linux-efi-handover64 RELEASE=1 + - name: General Test (Linux EFI Handover Boot Protocol) + id: test_linux + run: make run AUTO_TEST=test ENABLE_KVM=0 BOOT_PROTOCOL=linux-efi-handover64 RELEASE=1 diff --git a/Makefile b/Makefile index e9795f1c..13b013f4 100644 --- a/Makefile +++ b/Makefile @@ -31,13 +31,13 @@ BUILD_SYSCALL_TEST := 1 CARGO_OSDK_ARGS += --kcmd-args="SYSCALL_TEST_DIR=$(SYSCALL_TEST_DIR)" CARGO_OSDK_ARGS += --kcmd-args="EXTRA_BLOCKLISTS_DIRS=$(EXTRA_BLOCKLISTS_DIRS)" CARGO_OSDK_ARGS += --init-args="/opt/syscall_test/run_syscall_test.sh" -else ifeq ($(AUTO_TEST), regression) -CARGO_OSDK_ARGS += --init-args="/regression/run_regression_test.sh" +else ifeq ($(AUTO_TEST), test) +CARGO_OSDK_ARGS += --init-args="/test/run_general_test.sh" else ifeq ($(AUTO_TEST), boot) -CARGO_OSDK_ARGS += --init-args="/regression/boot_hello.sh" +CARGO_OSDK_ARGS += --init-args="/test/boot_hello.sh" else ifeq ($(AUTO_TEST), vsock) export VSOCK=1 -CARGO_OSDK_ARGS += --init-args="/regression/run_vsock_test.sh" +CARGO_OSDK_ARGS += --init-args="/test/run_vsock_test.sh" endif # If the BENCHMARK is set, we will run the benchmark in the kernel mode. @@ -132,7 +132,7 @@ $(CARGO_OSDK): .PHONY: initramfs initramfs: - @make --no-print-directory -C regression + @make --no-print-directory -C test .PHONY: build build: initramfs $(CARGO_OSDK) @@ -149,9 +149,9 @@ run: build ifeq ($(AUTO_TEST), syscall) @tail --lines 100 qemu.log | grep -q "^.* of .* test cases passed." \ || (echo "Syscall test failed" && exit 1) -else ifeq ($(AUTO_TEST), regression) - @tail --lines 100 qemu.log | grep -q "^All regression tests passed." \ - || (echo "Regression test failed" && exit 1) +else ifeq ($(AUTO_TEST), test) + @tail --lines 100 qemu.log | grep -q "^All general tests passed." \ + || (echo "General test failed" && exit 1) else ifeq ($(AUTO_TEST), boot) @tail --lines 100 qemu.log | grep -q "^Successfully booted." \ || (echo "Boot test failed" && exit 1) @@ -196,7 +196,7 @@ docs: $(CARGO_OSDK) .PHONY: format format: @./tools/format_all.sh - @make --no-print-directory -C regression format + @make --no-print-directory -C test format .PHONY: check check: $(CARGO_OSDK) @@ -218,7 +218,7 @@ check: $(CARGO_OSDK) echo "Checking $$dir"; \ (cd $$dir && cargo osdk clippy -- -- -D warnings) || exit 1; \ done - @make --no-print-directory -C regression check + @make --no-print-directory -C test check .PHONY: check_osdk check_osdk: @@ -228,5 +228,5 @@ check_osdk: clean: @cargo clean @cd docs && mdbook clean - @make --no-print-directory -C regression clean + @make --no-print-directory -C test clean @rm -f $(CARGO_OSDK) diff --git a/OSDK.toml b/OSDK.toml index cab5e9ae..f49df684 100644 --- a/OSDK.toml +++ b/OSDK.toml @@ -22,7 +22,7 @@ kcmd_args = [ "init=/usr/bin/busybox", ] init_args = ["sh", "-l"] -initramfs = "regression/build/initramfs.cpio.gz" +initramfs = "test/build/initramfs.cpio.gz" # Special options for testing [test.boot] diff --git a/docs/src/kernel/advanced-instructions.md b/docs/src/kernel/advanced-instructions.md index c5be3cb5..4595dd60 100644 --- a/docs/src/kernel/advanced-instructions.md +++ b/docs/src/kernel/advanced-instructions.md @@ -32,12 +32,12 @@ cargo osdk test ## Integration Test -### Regression Test +### General Test -The following command builds and runs the test binaries in `regression/apps` directory on Asterinas. +The following command builds and runs the test binaries in `test/apps` directory on Asterinas. ```bash -make run AUTO_TEST=regression +make run AUTO_TEST=test ``` ### Syscall Test diff --git a/kernel/aster-nix/src/fs/exfat/mod.rs b/kernel/aster-nix/src/fs/exfat/mod.rs index 640d0a5f..fb961d8a 100644 --- a/kernel/aster-nix/src/fs/exfat/mod.rs +++ b/kernel/aster-nix/src/fs/exfat/mod.rs @@ -104,7 +104,7 @@ mod test { } } /// Exfat disk image - static EXFAT_IMAGE: &[u8] = include_bytes!("../../../../../regression/build/exfat.img"); + static EXFAT_IMAGE: &[u8] = include_bytes!("../../../../../test/build/exfat.img"); /// Read exfat disk image fn new_vm_segment_from_image() -> Segment { diff --git a/kernel/libs/comp-sys/cargo-component/tests/regression.rs b/kernel/libs/comp-sys/cargo-component/tests/regression.rs index 678d688d..4beadf1d 100644 --- a/kernel/libs/comp-sys/cargo-component/tests/regression.rs +++ b/kernel/libs/comp-sys/cargo-component/tests/regression.rs @@ -8,7 +8,7 @@ mod test_utils; #[test] -fn regression() { +fn test() { let stderr = run_cargo_component_cmd!(); assert!(!stderr.contains("access controlled entry point is disallowed")); } diff --git a/regression/benchmark/README.md b/regression/benchmark/README.md deleted file mode 100644 index 27e6c4cb..00000000 --- a/regression/benchmark/README.md +++ /dev/null @@ -1,58 +0,0 @@ -# Introduction to benchmarks - -## Sysbench -Sysbench is a scriptable benchmark tool that evaluates system performance. It includes five kinds of tests: CPU, memory, file I/O, mutex performance, and thread performance. Detailed usage and options can be found by using: -```shell -sysbench --help -sysbench --test= help -``` -Here we list some general commands for evaluation: -```shell -# CPU test -sysbench --test=cpu --cpu-max-prime= --num-threads= run - -# Thread test -sysbench --test=threads --thread-yields= --num-threads= --max-time= run - -# Mutex test -sysbench --test=mutex --mutex-num= --mutex-locks= --num-threads= - -# File test, the file-total-size and file-num of prepare and run must be consistent -sysbench --test=fileio --file-total-size= --file-num= prepare -sysbench --test=fileio --file-total-size= --file-num= --file-test-mode= --file-block-size= --max-time= run - -# Memory test -sysbench --test=memory --memory-block-size= --memory-access-mode= --memory-oper= run -``` - -## Membench -Membench is used to establish a baseline for memory bandwidth and latency. For specific usage and options, use: -```shell -membench --help -``` -Here we list some general commands to use membench: -```shell -# Measure the latency of mmap -membench -runtime=5 -dir=/dev/zero -size= -engine=mmap_lat - -# Measure the latency of page fault handling. The size must be consistent with the file size. -membench -runtime=5 -dir=path_to_a_file -size= -copysize= -mode= -engine=page_fault - -# This is a easy way to generate a file with target size in Linux. -# The following command can create a file named 512K.file with the size 512K. -dd if=/dev/zero of=512K.file bs=1K count=512 -``` - -## Iperf -iPerf is a tool for actively measuring the maximum achievable bandwidth on IP networks. Usage and options are detailed in: -```shell -iperf3 -h -``` -iperf can run in the following instructions: -```shell -export HOST_ADDR=127.0.0.1 -export HOST_PORT=8888 -iperf3 -s -B $HOST_ADDR -p $HOST_PORT -D # Start the server as a daemon -iperf3 -c $HOST_ADDR -p $HOST_PORT # Start the client -``` -Note that [a variant of iperf3](https://github.com/stefano-garzarella/iperf-vsock) can measure the performance of `vsock`. But the implemented `vsock` has not been verified to work well in it. \ No newline at end of file diff --git a/regression/.gitignore b/test/.gitignore similarity index 100% rename from regression/.gitignore rename to test/.gitignore diff --git a/regression/Makefile b/test/Makefile similarity index 97% rename from regression/Makefile rename to test/Makefile index f935281d..de7a8f81 100644 --- a/regression/Makefile +++ b/test/Makefile @@ -26,7 +26,7 @@ INITRAMFS_ALL_DIRS := \ $(INITRAMFS)/lib64 \ $(INITRAMFS)/bin \ $(INITRAMFS)/usr/bin \ - $(INITRAMFS)/regression \ + $(INITRAMFS)/test \ $(INITRAMFS)/benchmark \ $(INITRAMFS_EMPTY_DIRS) SYSCALL_TEST_DIR := $(INITRAMFS)/opt/syscall_test @@ -74,8 +74,8 @@ $(INITRAMFS)/usr/bin: | $(INITRAMFS)/bin @mkdir -p $@ @cp /usr/bin/busybox $@ -.PHONY: $(INITRAMFS)/regression -$(INITRAMFS)/regression: +.PHONY: $(INITRAMFS)/test +$(INITRAMFS)/test: @make --no-print-directory -C apps $(INITRAMFS)/benchmark: | $(INITRAMFS)/benchmark/bin diff --git a/regression/apps/.clang-format b/test/apps/.clang-format similarity index 100% rename from regression/apps/.clang-format rename to test/apps/.clang-format diff --git a/regression/apps/Makefile b/test/apps/Makefile similarity index 78% rename from regression/apps/Makefile rename to test/apps/Makefile index 82a60d0c..44ae97a4 100644 --- a/regression/apps/Makefile +++ b/test/apps/Makefile @@ -6,7 +6,7 @@ MKFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST))) CUR_DIR := $(patsubst %/,%,$(dir $(MKFILE_PATH))) INITRAMFS ?= $(CUR_DIR)/../build/initramfs -REGRESSION_BUILD_DIR ?= $(INITRAMFS)/regression +TEST_BUILD_DIR ?= $(INITRAMFS)/test # These test apps are sorted by name TEST_APPS := \ @@ -48,17 +48,17 @@ $(TEST_APPS): .PHONY: format format: - @echo "Fixing code format for regression tests..." + @echo "Fixing code format for general tests..." @clang-format -i $(C_SOURCES) .PHONY: check check: - @echo "Checking code format for regression tests..." + @echo "Checking code format for general tests..." @clang-format --dry-run --Werror $(C_SOURCES) -$(REGRESSION_BUILD_DIR): +$(TEST_BUILD_DIR): @mkdir -p $@ .PHONY: scripts -scripts: | $(REGRESSION_BUILD_DIR) - @make --no-print-directory BUILD_DIR=$(REGRESSION_BUILD_DIR) -C scripts +scripts: | $(TEST_BUILD_DIR) + @make --no-print-directory BUILD_DIR=$(TEST_BUILD_DIR) -C scripts diff --git a/regression/apps/alarm/Makefile b/test/apps/alarm/Makefile similarity index 100% rename from regression/apps/alarm/Makefile rename to test/apps/alarm/Makefile diff --git a/regression/apps/alarm/alarm.c b/test/apps/alarm/alarm.c similarity index 100% rename from regression/apps/alarm/alarm.c rename to test/apps/alarm/alarm.c diff --git a/regression/apps/capability/Makefile b/test/apps/capability/Makefile similarity index 100% rename from regression/apps/capability/Makefile rename to test/apps/capability/Makefile diff --git a/regression/apps/capability/capabilities.c b/test/apps/capability/capabilities.c similarity index 100% rename from regression/apps/capability/capabilities.c rename to test/apps/capability/capabilities.c diff --git a/regression/apps/clone3/Makefile b/test/apps/clone3/Makefile similarity index 100% rename from regression/apps/clone3/Makefile rename to test/apps/clone3/Makefile diff --git a/regression/apps/clone3/clone_process.c b/test/apps/clone3/clone_process.c similarity index 100% rename from regression/apps/clone3/clone_process.c rename to test/apps/clone3/clone_process.c diff --git a/regression/apps/cpu_affinity/Makefile b/test/apps/cpu_affinity/Makefile similarity index 100% rename from regression/apps/cpu_affinity/Makefile rename to test/apps/cpu_affinity/Makefile diff --git a/regression/apps/cpu_affinity/sched_getaffinity.c b/test/apps/cpu_affinity/sched_getaffinity.c similarity index 100% rename from regression/apps/cpu_affinity/sched_getaffinity.c rename to test/apps/cpu_affinity/sched_getaffinity.c diff --git a/regression/apps/epoll/Makefile b/test/apps/epoll/Makefile similarity index 100% rename from regression/apps/epoll/Makefile rename to test/apps/epoll/Makefile diff --git a/regression/apps/epoll/epoll_pwait.c b/test/apps/epoll/epoll_pwait.c similarity index 100% rename from regression/apps/epoll/epoll_pwait.c rename to test/apps/epoll/epoll_pwait.c diff --git a/regression/apps/epoll/epoll_wait.c b/test/apps/epoll/epoll_wait.c similarity index 100% rename from regression/apps/epoll/epoll_wait.c rename to test/apps/epoll/epoll_wait.c diff --git a/regression/apps/eventfd2/Makefile b/test/apps/eventfd2/Makefile similarity index 100% rename from regression/apps/eventfd2/Makefile rename to test/apps/eventfd2/Makefile diff --git a/regression/apps/eventfd2/eventfd2.c b/test/apps/eventfd2/eventfd2.c similarity index 100% rename from regression/apps/eventfd2/eventfd2.c rename to test/apps/eventfd2/eventfd2.c diff --git a/regression/apps/execve/Makefile b/test/apps/execve/Makefile similarity index 100% rename from regression/apps/execve/Makefile rename to test/apps/execve/Makefile diff --git a/regression/apps/execve/execve.c b/test/apps/execve/execve.c similarity index 89% rename from regression/apps/execve/execve.c rename to test/apps/execve/execve.c index a7992157..6318c7f1 100644 --- a/regression/apps/execve/execve.c +++ b/test/apps/execve/execve.c @@ -11,7 +11,7 @@ int main() printf("Execve a new file /execve/hello:\n"); // flush the stdout content to ensure the content print to console fflush(stdout); - execve("/regression/execve/hello", argv, envp); + execve("/test/execve/hello", argv, envp); printf("Should not print\n"); fflush(stdout); return 0; diff --git a/regression/apps/execve/hello.c b/test/apps/execve/hello.c similarity index 100% rename from regression/apps/execve/hello.c rename to test/apps/execve/hello.c diff --git a/regression/apps/fdatasync/Makefile b/test/apps/fdatasync/Makefile similarity index 100% rename from regression/apps/fdatasync/Makefile rename to test/apps/fdatasync/Makefile diff --git a/regression/apps/fdatasync/fdatasync.c b/test/apps/fdatasync/fdatasync.c similarity index 100% rename from regression/apps/fdatasync/fdatasync.c rename to test/apps/fdatasync/fdatasync.c diff --git a/regression/apps/file_io/Makefile b/test/apps/file_io/Makefile similarity index 100% rename from regression/apps/file_io/Makefile rename to test/apps/file_io/Makefile diff --git a/regression/apps/file_io/file_io.c b/test/apps/file_io/file_io.c similarity index 100% rename from regression/apps/file_io/file_io.c rename to test/apps/file_io/file_io.c diff --git a/regression/apps/fork/Makefile b/test/apps/fork/Makefile similarity index 100% rename from regression/apps/fork/Makefile rename to test/apps/fork/Makefile diff --git a/regression/apps/fork/fork.S b/test/apps/fork/fork.S similarity index 100% rename from regression/apps/fork/fork.S rename to test/apps/fork/fork.S diff --git a/regression/apps/fork_c/Makefile b/test/apps/fork_c/Makefile similarity index 100% rename from regression/apps/fork_c/Makefile rename to test/apps/fork_c/Makefile diff --git a/regression/apps/fork_c/fork.c b/test/apps/fork_c/fork.c similarity index 100% rename from regression/apps/fork_c/fork.c rename to test/apps/fork_c/fork.c diff --git a/regression/apps/getpid/Makefile b/test/apps/getpid/Makefile similarity index 100% rename from regression/apps/getpid/Makefile rename to test/apps/getpid/Makefile diff --git a/regression/apps/getpid/getpid.c b/test/apps/getpid/getpid.c similarity index 100% rename from regression/apps/getpid/getpid.c rename to test/apps/getpid/getpid.c diff --git a/regression/apps/hello_c/Makefile b/test/apps/hello_c/Makefile similarity index 100% rename from regression/apps/hello_c/Makefile rename to test/apps/hello_c/Makefile diff --git a/regression/apps/hello_c/hello.c b/test/apps/hello_c/hello.c similarity index 100% rename from regression/apps/hello_c/hello.c rename to test/apps/hello_c/hello.c diff --git a/regression/apps/hello_pie/Makefile b/test/apps/hello_pie/Makefile similarity index 100% rename from regression/apps/hello_pie/Makefile rename to test/apps/hello_pie/Makefile diff --git a/regression/apps/hello_pie/hello.c b/test/apps/hello_pie/hello.c similarity index 100% rename from regression/apps/hello_pie/hello.c rename to test/apps/hello_pie/hello.c diff --git a/regression/apps/hello_world/Makefile b/test/apps/hello_world/Makefile similarity index 100% rename from regression/apps/hello_world/Makefile rename to test/apps/hello_world/Makefile diff --git a/regression/apps/hello_world/hello_world.S b/test/apps/hello_world/hello_world.S similarity index 100% rename from regression/apps/hello_world/hello_world.S rename to test/apps/hello_world/hello_world.S diff --git a/regression/apps/itimer/Makefile b/test/apps/itimer/Makefile similarity index 100% rename from regression/apps/itimer/Makefile rename to test/apps/itimer/Makefile diff --git a/regression/apps/itimer/setitimer.c b/test/apps/itimer/setitimer.c similarity index 100% rename from regression/apps/itimer/setitimer.c rename to test/apps/itimer/setitimer.c diff --git a/regression/apps/itimer/timer_create.c b/test/apps/itimer/timer_create.c similarity index 100% rename from regression/apps/itimer/timer_create.c rename to test/apps/itimer/timer_create.c diff --git a/regression/apps/mmap/Makefile b/test/apps/mmap/Makefile similarity index 100% rename from regression/apps/mmap/Makefile rename to test/apps/mmap/Makefile diff --git a/regression/apps/mmap/mmap_and_fork.c b/test/apps/mmap/mmap_and_fork.c similarity index 100% rename from regression/apps/mmap/mmap_and_fork.c rename to test/apps/mmap/mmap_and_fork.c diff --git a/regression/apps/mongoose/.gitignore b/test/apps/mongoose/.gitignore similarity index 100% rename from regression/apps/mongoose/.gitignore rename to test/apps/mongoose/.gitignore diff --git a/regression/apps/mongoose/Makefile b/test/apps/mongoose/Makefile similarity index 94% rename from regression/apps/mongoose/Makefile rename to test/apps/mongoose/Makefile index 1f0b6acd..5fa88929 100644 --- a/regression/apps/mongoose/Makefile +++ b/test/apps/mongoose/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: MPL-2.0 CUR_DIR := $(shell dirname $(realpath $(firstword $(MAKEFILE_LIST)))) -BUILD_DIR := $(CUR_DIR)/../../build/initramfs/regression/network +BUILD_DIR := $(CUR_DIR)/../../build/initramfs/test/network MONGOOSE_DIR := $(CUR_DIR) MONGOOSE_C := $(MONGOOSE_DIR)/mongoose.c MONGOOSE_H := $(MONGOOSE_DIR)/mongoose.h diff --git a/regression/apps/mongoose/http_client.c b/test/apps/mongoose/http_client.c similarity index 100% rename from regression/apps/mongoose/http_client.c rename to test/apps/mongoose/http_client.c diff --git a/regression/apps/mongoose/http_server.c b/test/apps/mongoose/http_server.c similarity index 100% rename from regression/apps/mongoose/http_server.c rename to test/apps/mongoose/http_server.c diff --git a/regression/apps/network/Makefile b/test/apps/network/Makefile similarity index 100% rename from regression/apps/network/Makefile rename to test/apps/network/Makefile diff --git a/regression/apps/network/listen_backlog.c b/test/apps/network/listen_backlog.c similarity index 100% rename from regression/apps/network/listen_backlog.c rename to test/apps/network/listen_backlog.c diff --git a/regression/apps/network/send_buf_full.c b/test/apps/network/send_buf_full.c similarity index 100% rename from regression/apps/network/send_buf_full.c rename to test/apps/network/send_buf_full.c diff --git a/regression/apps/network/socketpair.c b/test/apps/network/socketpair.c similarity index 100% rename from regression/apps/network/socketpair.c rename to test/apps/network/socketpair.c diff --git a/regression/apps/network/sockoption.c b/test/apps/network/sockoption.c similarity index 100% rename from regression/apps/network/sockoption.c rename to test/apps/network/sockoption.c diff --git a/regression/apps/network/tcp_client.c b/test/apps/network/tcp_client.c similarity index 100% rename from regression/apps/network/tcp_client.c rename to test/apps/network/tcp_client.c diff --git a/regression/apps/network/tcp_err.c b/test/apps/network/tcp_err.c similarity index 100% rename from regression/apps/network/tcp_err.c rename to test/apps/network/tcp_err.c diff --git a/regression/apps/network/tcp_server.c b/test/apps/network/tcp_server.c similarity index 100% rename from regression/apps/network/tcp_server.c rename to test/apps/network/tcp_server.c diff --git a/regression/apps/network/test.h b/test/apps/network/test.h similarity index 97% rename from regression/apps/network/test.h rename to test/apps/network/test.h index 86b3353f..c84d42e9 100644 --- a/regression/apps/network/test.h +++ b/test/apps/network/test.h @@ -1,16 +1,16 @@ /* SPDX-License-Identifier: MPL-2.0 */ /* - * A framework for writing regression tests. + * A framework for writing general tests. * - * A regression test typically consists of two parts, the setup part and the + * A general test typically consists of two parts, the setup part and the * test part. The setup part contains setup functions that set up the context * for the subsequent tests to run. The setup functions cannot fail, and if they * do, execution is aborted because the subsequent tests will not work as * expected either. The test functions, on the other hand, can fail, and if they * do, they are reported as test failures. * - * The framework provides basic utilities for writing regression tests: + * The framework provides basic utilities for writing general tests: * * - To define a setup function or a test function, FN_SETUP() or FN_TEST() can * be used. These functions are automatically executed in the order of their diff --git a/regression/apps/network/udp_client.c b/test/apps/network/udp_client.c similarity index 100% rename from regression/apps/network/udp_client.c rename to test/apps/network/udp_client.c diff --git a/regression/apps/network/udp_err.c b/test/apps/network/udp_err.c similarity index 100% rename from regression/apps/network/udp_err.c rename to test/apps/network/udp_err.c diff --git a/regression/apps/network/udp_server.c b/test/apps/network/udp_server.c similarity index 100% rename from regression/apps/network/udp_server.c rename to test/apps/network/udp_server.c diff --git a/regression/apps/network/unix_client.c b/test/apps/network/unix_client.c similarity index 100% rename from regression/apps/network/unix_client.c rename to test/apps/network/unix_client.c diff --git a/regression/apps/network/unix_server.c b/test/apps/network/unix_server.c similarity index 100% rename from regression/apps/network/unix_server.c rename to test/apps/network/unix_server.c diff --git a/regression/apps/pthread/Makefile b/test/apps/pthread/Makefile similarity index 100% rename from regression/apps/pthread/Makefile rename to test/apps/pthread/Makefile diff --git a/regression/apps/pthread/pthread_test.c b/test/apps/pthread/pthread_test.c similarity index 100% rename from regression/apps/pthread/pthread_test.c rename to test/apps/pthread/pthread_test.c diff --git a/regression/apps/pty/Makefile b/test/apps/pty/Makefile similarity index 100% rename from regression/apps/pty/Makefile rename to test/apps/pty/Makefile diff --git a/regression/apps/pty/open_pty.c b/test/apps/pty/open_pty.c similarity index 100% rename from regression/apps/pty/open_pty.c rename to test/apps/pty/open_pty.c diff --git a/regression/apps/scripts/Makefile b/test/apps/scripts/Makefile similarity index 100% rename from regression/apps/scripts/Makefile rename to test/apps/scripts/Makefile diff --git a/regression/apps/scripts/boot_hello.sh b/test/apps/scripts/boot_hello.sh similarity index 100% rename from regression/apps/scripts/boot_hello.sh rename to test/apps/scripts/boot_hello.sh diff --git a/regression/apps/scripts/fs.sh b/test/apps/scripts/fs.sh similarity index 100% rename from regression/apps/scripts/fs.sh rename to test/apps/scripts/fs.sh diff --git a/regression/apps/scripts/network.sh b/test/apps/scripts/network.sh similarity index 91% rename from regression/apps/scripts/network.sh rename to test/apps/scripts/network.sh index 09d7e5b1..9ece2b11 100755 --- a/regression/apps/scripts/network.sh +++ b/test/apps/scripts/network.sh @@ -4,7 +4,7 @@ set -e -NETTEST_DIR=/regression/network +NETTEST_DIR=/test/network cd ${NETTEST_DIR} echo "Start network test......" diff --git a/regression/apps/scripts/process.sh b/test/apps/scripts/process.sh similarity index 96% rename from regression/apps/scripts/process.sh rename to test/apps/scripts/process.sh index dc46fb27..9b1bef49 100755 --- a/regression/apps/scripts/process.sh +++ b/test/apps/scripts/process.sh @@ -4,7 +4,7 @@ set -e -SCRIPT_DIR=/regression +SCRIPT_DIR=/test cd ${SCRIPT_DIR}/.. echo "Start process test......" diff --git a/regression/apps/scripts/run_regression_test.sh b/test/apps/scripts/run_general_test.sh similarity index 71% rename from regression/apps/scripts/run_regression_test.sh rename to test/apps/scripts/run_general_test.sh index 3b30b0dc..29ae4fbb 100755 --- a/regression/apps/scripts/run_regression_test.sh +++ b/test/apps/scripts/run_general_test.sh @@ -4,7 +4,7 @@ set -e -SCRIPT_DIR=/regression +SCRIPT_DIR=/test cd ${SCRIPT_DIR} ./shell_cmd.sh @@ -13,4 +13,4 @@ cd ${SCRIPT_DIR} ./network.sh ./test_epoll_pwait.sh -echo "All regression tests passed." +echo "All general tests passed." diff --git a/regression/apps/scripts/run_vsock_test.sh b/test/apps/scripts/run_vsock_test.sh similarity index 93% rename from regression/apps/scripts/run_vsock_test.sh rename to test/apps/scripts/run_vsock_test.sh index 25c6a458..b083dd18 100644 --- a/regression/apps/scripts/run_vsock_test.sh +++ b/test/apps/scripts/run_vsock_test.sh @@ -8,7 +8,7 @@ set -e -VSOCK_DIR=/regression/vsock +VSOCK_DIR=/test/vsock cd ${VSOCK_DIR} echo "Start vsock test......" diff --git a/regression/apps/scripts/shell_cmd.sh b/test/apps/scripts/shell_cmd.sh similarity index 96% rename from regression/apps/scripts/shell_cmd.sh rename to test/apps/scripts/shell_cmd.sh index 49d6ab2c..a30f0b1b 100755 --- a/regression/apps/scripts/shell_cmd.sh +++ b/test/apps/scripts/shell_cmd.sh @@ -5,7 +5,7 @@ set -e set -x -SCRIPT_DIR=/regression +SCRIPT_DIR=/test cd ${SCRIPT_DIR} touch hello.txt diff --git a/regression/apps/scripts/test_epoll_pwait.sh b/test/apps/scripts/test_epoll_pwait.sh similarity index 95% rename from regression/apps/scripts/test_epoll_pwait.sh rename to test/apps/scripts/test_epoll_pwait.sh index 2de6e092..9ce90e02 100755 --- a/regression/apps/scripts/test_epoll_pwait.sh +++ b/test/apps/scripts/test_epoll_pwait.sh @@ -4,7 +4,7 @@ set -e -EPOLLTEST_DIR=/regression/epoll +EPOLLTEST_DIR=/test/epoll cd ${EPOLLTEST_DIR} echo "Start epoll_pwait test......" diff --git a/regression/apps/scripts/vsock_commands.sh b/test/apps/scripts/vsock_commands.sh similarity index 100% rename from regression/apps/scripts/vsock_commands.sh rename to test/apps/scripts/vsock_commands.sh diff --git a/regression/apps/signal_c/Makefile b/test/apps/signal_c/Makefile similarity index 100% rename from regression/apps/signal_c/Makefile rename to test/apps/signal_c/Makefile diff --git a/regression/apps/signal_c/parent_death_signal.c b/test/apps/signal_c/parent_death_signal.c similarity index 100% rename from regression/apps/signal_c/parent_death_signal.c rename to test/apps/signal_c/parent_death_signal.c diff --git a/regression/apps/signal_c/signal_test.c b/test/apps/signal_c/signal_test.c similarity index 100% rename from regression/apps/signal_c/signal_test.c rename to test/apps/signal_c/signal_test.c diff --git a/regression/apps/test_common.mk b/test/apps/test_common.mk similarity index 93% rename from regression/apps/test_common.mk rename to test/apps/test_common.mk index e3342924..466576b7 100644 --- a/regression/apps/test_common.mk +++ b/test/apps/test_common.mk @@ -5,7 +5,7 @@ INCLUDE_MAKEFILE := $(lastword $(MAKEFILE_LIST)) CUR_DIR := $(shell dirname $(realpath $(MAIN_MAKEFILE))) CUR_DIR_NAME := $(shell basename $(realpath $(CUR_DIR))) BUILD_DIR := $(CUR_DIR)/../../build -OBJ_OUTPUT_DIR := $(BUILD_DIR)/initramfs/regression/$(CUR_DIR_NAME) +OBJ_OUTPUT_DIR := $(BUILD_DIR)/initramfs/test/$(CUR_DIR_NAME) DEP_OUTPUT_DIR := $(BUILD_DIR)/dep/$(CUR_DIR_NAME) C_SRCS := $(wildcard *.c) C_OBJS := $(addprefix $(OBJ_OUTPUT_DIR)/,$(C_SRCS:%.c=%)) diff --git a/regression/apps/vsock/Makefile b/test/apps/vsock/Makefile similarity index 100% rename from regression/apps/vsock/Makefile rename to test/apps/vsock/Makefile diff --git a/regression/apps/vsock/vsock_client.c b/test/apps/vsock/vsock_client.c similarity index 100% rename from regression/apps/vsock/vsock_client.c rename to test/apps/vsock/vsock_client.c diff --git a/regression/apps/vsock/vsock_server.c b/test/apps/vsock/vsock_server.c similarity index 100% rename from regression/apps/vsock/vsock_server.c rename to test/apps/vsock/vsock_server.c diff --git a/test/benchmark/README.md b/test/benchmark/README.md new file mode 100644 index 00000000..171a5180 --- /dev/null +++ b/test/benchmark/README.md @@ -0,0 +1,146 @@ +# Introduction to benchmarks + +## Overview of supported benchmarks +The benchmark suite contains several benchmarks that can be used to evaluate the performance of the Asterinas platform. The following benchmarks are supported: + +- [Sysbench](#Sysbench) +- [Membench](#Membench) +- [Iperf](#Iperf) + +### Sysbench +Sysbench is a scriptable benchmark tool that evaluates system performance. It includes five kinds of tests: CPU, memory, file I/O, mutex performance, and thread performance. Detailed usage and options can be found by using: +```shell +sysbench --help +sysbench --test= help +``` +Here we list some general commands for evaluation: +```shell +# CPU test +sysbench --test=cpu --cpu-max-prime= --num-threads= run + +# Thread test +sysbench --test=threads --thread-yields= --num-threads= --max-time= run + +# Mutex test +sysbench --test=mutex --mutex-num= --mutex-locks= --num-threads= + +# File test, the file-total-size and file-num of prepare and run must be consistent +sysbench --test=fileio --file-total-size= --file-num= prepare +sysbench --test=fileio --file-total-size= --file-num= --file-test-mode= --file-block-size= --max-time= run + +# Memory test +sysbench --test=memory --memory-block-size= --memory-access-mode= --memory-oper= run +``` + +### Membench +Membench is used to establish a baseline for memory bandwidth and latency. For specific usage and options, use: +```shell +membench --help +``` +Here we list some general commands to use membench: +```shell +# Measure the latency of mmap +membench -runtime=5 -dir=/dev/zero -size= -engine=mmap_lat + +# Measure the latency of page fault handling. The size must be consistent with the file size. +membench -runtime=5 -dir=path_to_a_file -size= -copysize= -mode= -engine=page_fault + +# This is a easy way to generate a file with target size in Linux. +# The following command can create a file named 512K.file with the size 512K. +dd if=/dev/zero of=512K.file bs=1K count=512 +``` + +### Iperf +iPerf is a tool for actively measuring the maximum achievable bandwidth on IP networks. Usage and options are detailed in: +```shell +iperf3 -h +``` +iperf can run in the following instructions: +```shell +export HOST_ADDR=127.0.0.1 +export HOST_PORT=8888 +iperf3 -s -B $HOST_ADDR -p $HOST_PORT -D # Start the server as a daemon +iperf3 -c $HOST_ADDR -p $HOST_PORT # Start the client +``` +Note that [a variant of iperf3](https://github.com/stefano-garzarella/iperf-vsock) can measure the performance of `vsock`. But the implemented `vsock` has not been verified to work well in it. + +## Add benchmark to benchmark CI + +To add a new benchmark to the Asternias Continuous Integration (CI) system, follow these detailed steps: + +### Step 1: Add the Benchmark to the `asterinas/test/benchmarks` Directory + +1. **Create the Benchmark Directory:** + - Navigate to `asterinas/test/benchmarks`. + - Create a new directory named after your benchmark, e.g., `getpid`. + +2. **Create the Necessary Files:** + - **config.json:** + ```json + { + "alert_threshold": "125%", + "pattern": "Syscall average latency:", + "field": "4" + } + ``` + - `alert_threshold`: Set the threshold for alerting. If the benchmark result exceeds this threshold, an alert will be triggered. + - `pattern`: Define the pattern to extract the benchmark result from the output. + - `field`: Specify the index of the result in the extracted output. + + For example, if the benchmark output is "Syscall average latency: 1000 ns", the `pattern` is "Syscall average latency:", and the `field` is "4". `jq` will extract "1000" as the benchmark result. + + - **result_template.json:** + ```json + [ + { + "name": "Average Syscall Latency on Linux", + "unit": "ns", + "value": 0, + "extra": "linux_avg" + }, + { + "name": "Average Syscall Latency on Asterinas", + "unit": "ns", + "value": 0, + "extra": "aster_avg" + } + ] + ``` + - Adjust `name` and `unit` according to your benchmark specifics. + + - **run.sh:** + ```bash + #!/bin/bash + + /benchmark/bin/getpid + ``` + - This script runs the benchmark. Ensure the path to the benchmark binary is correct. `asterinas/test/Makefile` handles the benchmark binaries. + +### Step 2: Update the `asterinas/.github/benchmarks.yml` File + +1. **Edit the Benchmarks Configuration:** + - Open `asterinas/.github/benchmarks.yml`. + - Add your benchmark to the `strategy.matrix.benchmark` list: + ```yaml + strategy: + matrix: + benchmark: [getpid] + fail-fast: false + ``` + +### Step 3: Test the Benchmark Locally + +1. **Run the Benchmark:** + - Execute the following command to test the benchmark locally: + ```bash + cd asterinas + bash test/benchmark/bench_linux_aster.sh getpid + ``` + - Ensure the benchmark runs successfully and check the results in `asterinas/result_getpid.json`. + +### Additional Considerations + +- **Validation:** After adding and testing the benchmark, ensure that the CI pipeline correctly integrates the new benchmark by triggering a CI build. +- **Documentation:** Update any relevant documentation to include the new benchmark, explaining its purpose and how to interpret its results. + +By following these steps, you will successfully integrate a new benchmark into the Asternias CI system, enhancing its capability to evaluate platform performance. diff --git a/regression/benchmark/bench_linux_and_aster.sh b/test/benchmark/bench_linux_and_aster.sh similarity index 100% rename from regression/benchmark/bench_linux_and_aster.sh rename to test/benchmark/bench_linux_and_aster.sh diff --git a/regression/benchmark/getpid/config.json b/test/benchmark/getpid/config.json similarity index 100% rename from regression/benchmark/getpid/config.json rename to test/benchmark/getpid/config.json diff --git a/regression/benchmark/getpid/result_template.json b/test/benchmark/getpid/result_template.json similarity index 100% rename from regression/benchmark/getpid/result_template.json rename to test/benchmark/getpid/result_template.json diff --git a/regression/benchmark/getpid/run.sh b/test/benchmark/getpid/run.sh similarity index 100% rename from regression/benchmark/getpid/run.sh rename to test/benchmark/getpid/run.sh diff --git a/regression/benchmark/sysbench-cpu/config.json b/test/benchmark/sysbench-cpu/config.json similarity index 100% rename from regression/benchmark/sysbench-cpu/config.json rename to test/benchmark/sysbench-cpu/config.json diff --git a/regression/benchmark/sysbench-cpu/result_template.json b/test/benchmark/sysbench-cpu/result_template.json similarity index 100% rename from regression/benchmark/sysbench-cpu/result_template.json rename to test/benchmark/sysbench-cpu/result_template.json diff --git a/regression/benchmark/sysbench-cpu/run.sh b/test/benchmark/sysbench-cpu/run.sh similarity index 100% rename from regression/benchmark/sysbench-cpu/run.sh rename to test/benchmark/sysbench-cpu/run.sh diff --git a/regression/benchmark/sysbench-thread/config.json b/test/benchmark/sysbench-thread/config.json similarity index 100% rename from regression/benchmark/sysbench-thread/config.json rename to test/benchmark/sysbench-thread/config.json diff --git a/regression/benchmark/sysbench-thread/result_template.json b/test/benchmark/sysbench-thread/result_template.json similarity index 100% rename from regression/benchmark/sysbench-thread/result_template.json rename to test/benchmark/sysbench-thread/result_template.json diff --git a/regression/benchmark/sysbench-thread/run.sh b/test/benchmark/sysbench-thread/run.sh similarity index 100% rename from regression/benchmark/sysbench-thread/run.sh rename to test/benchmark/sysbench-thread/run.sh diff --git a/regression/etc/group b/test/etc/group similarity index 100% rename from regression/etc/group rename to test/etc/group diff --git a/regression/etc/passwd b/test/etc/passwd similarity index 100% rename from regression/etc/passwd rename to test/etc/passwd diff --git a/regression/syscall_test/Makefile b/test/syscall_test/Makefile similarity index 100% rename from regression/syscall_test/Makefile rename to test/syscall_test/Makefile diff --git a/regression/syscall_test/blocklists.exfat/access_test b/test/syscall_test/blocklists.exfat/access_test similarity index 100% rename from regression/syscall_test/blocklists.exfat/access_test rename to test/syscall_test/blocklists.exfat/access_test diff --git a/regression/syscall_test/blocklists.exfat/chmod_test b/test/syscall_test/blocklists.exfat/chmod_test similarity index 100% rename from regression/syscall_test/blocklists.exfat/chmod_test rename to test/syscall_test/blocklists.exfat/chmod_test diff --git a/regression/syscall_test/blocklists.exfat/link_test b/test/syscall_test/blocklists.exfat/link_test similarity index 100% rename from regression/syscall_test/blocklists.exfat/link_test rename to test/syscall_test/blocklists.exfat/link_test diff --git a/regression/syscall_test/blocklists.exfat/mkdir_test b/test/syscall_test/blocklists.exfat/mkdir_test similarity index 100% rename from regression/syscall_test/blocklists.exfat/mkdir_test rename to test/syscall_test/blocklists.exfat/mkdir_test diff --git a/regression/syscall_test/blocklists.exfat/open_test b/test/syscall_test/blocklists.exfat/open_test similarity index 100% rename from regression/syscall_test/blocklists.exfat/open_test rename to test/syscall_test/blocklists.exfat/open_test diff --git a/regression/syscall_test/blocklists.exfat/stat_test b/test/syscall_test/blocklists.exfat/stat_test similarity index 100% rename from regression/syscall_test/blocklists.exfat/stat_test rename to test/syscall_test/blocklists.exfat/stat_test diff --git a/regression/syscall_test/blocklists.exfat/symlink_test b/test/syscall_test/blocklists.exfat/symlink_test similarity index 100% rename from regression/syscall_test/blocklists.exfat/symlink_test rename to test/syscall_test/blocklists.exfat/symlink_test diff --git a/regression/syscall_test/blocklists.exfat/utimes_test b/test/syscall_test/blocklists.exfat/utimes_test similarity index 100% rename from regression/syscall_test/blocklists.exfat/utimes_test rename to test/syscall_test/blocklists.exfat/utimes_test diff --git a/regression/syscall_test/blocklists/access_test b/test/syscall_test/blocklists/access_test similarity index 100% rename from regression/syscall_test/blocklists/access_test rename to test/syscall_test/blocklists/access_test diff --git a/regression/syscall_test/blocklists/alarm_test b/test/syscall_test/blocklists/alarm_test similarity index 100% rename from regression/syscall_test/blocklists/alarm_test rename to test/syscall_test/blocklists/alarm_test diff --git a/regression/syscall_test/blocklists/chmod_test b/test/syscall_test/blocklists/chmod_test similarity index 100% rename from regression/syscall_test/blocklists/chmod_test rename to test/syscall_test/blocklists/chmod_test diff --git a/regression/syscall_test/blocklists/chown_test b/test/syscall_test/blocklists/chown_test similarity index 100% rename from regression/syscall_test/blocklists/chown_test rename to test/syscall_test/blocklists/chown_test diff --git a/regression/syscall_test/blocklists/chroot_test b/test/syscall_test/blocklists/chroot_test similarity index 100% rename from regression/syscall_test/blocklists/chroot_test rename to test/syscall_test/blocklists/chroot_test diff --git a/regression/syscall_test/blocklists/epoll_test b/test/syscall_test/blocklists/epoll_test similarity index 100% rename from regression/syscall_test/blocklists/epoll_test rename to test/syscall_test/blocklists/epoll_test diff --git a/regression/syscall_test/blocklists/eventfd_test b/test/syscall_test/blocklists/eventfd_test similarity index 100% rename from regression/syscall_test/blocklists/eventfd_test rename to test/syscall_test/blocklists/eventfd_test diff --git a/regression/syscall_test/blocklists/getdents_test b/test/syscall_test/blocklists/getdents_test similarity index 100% rename from regression/syscall_test/blocklists/getdents_test rename to test/syscall_test/blocklists/getdents_test diff --git a/regression/syscall_test/blocklists/link_test b/test/syscall_test/blocklists/link_test similarity index 100% rename from regression/syscall_test/blocklists/link_test rename to test/syscall_test/blocklists/link_test diff --git a/regression/syscall_test/blocklists/lseek_test b/test/syscall_test/blocklists/lseek_test similarity index 100% rename from regression/syscall_test/blocklists/lseek_test rename to test/syscall_test/blocklists/lseek_test diff --git a/regression/syscall_test/blocklists/mkdir_test b/test/syscall_test/blocklists/mkdir_test similarity index 100% rename from regression/syscall_test/blocklists/mkdir_test rename to test/syscall_test/blocklists/mkdir_test diff --git a/regression/syscall_test/blocklists/mmap_test b/test/syscall_test/blocklists/mmap_test similarity index 100% rename from regression/syscall_test/blocklists/mmap_test rename to test/syscall_test/blocklists/mmap_test diff --git a/regression/syscall_test/blocklists/mount_test b/test/syscall_test/blocklists/mount_test similarity index 100% rename from regression/syscall_test/blocklists/mount_test rename to test/syscall_test/blocklists/mount_test diff --git a/regression/syscall_test/blocklists/open_create_test b/test/syscall_test/blocklists/open_create_test similarity index 100% rename from regression/syscall_test/blocklists/open_create_test rename to test/syscall_test/blocklists/open_create_test diff --git a/regression/syscall_test/blocklists/open_test b/test/syscall_test/blocklists/open_test similarity index 100% rename from regression/syscall_test/blocklists/open_test rename to test/syscall_test/blocklists/open_test diff --git a/regression/syscall_test/blocklists/pread64_test b/test/syscall_test/blocklists/pread64_test similarity index 100% rename from regression/syscall_test/blocklists/pread64_test rename to test/syscall_test/blocklists/pread64_test diff --git a/regression/syscall_test/blocklists/preadv2_test b/test/syscall_test/blocklists/preadv2_test similarity index 100% rename from regression/syscall_test/blocklists/preadv2_test rename to test/syscall_test/blocklists/preadv2_test diff --git a/regression/syscall_test/blocklists/pty_test b/test/syscall_test/blocklists/pty_test similarity index 100% rename from regression/syscall_test/blocklists/pty_test rename to test/syscall_test/blocklists/pty_test diff --git a/regression/syscall_test/blocklists/pwritev2_test b/test/syscall_test/blocklists/pwritev2_test similarity index 100% rename from regression/syscall_test/blocklists/pwritev2_test rename to test/syscall_test/blocklists/pwritev2_test diff --git a/regression/syscall_test/blocklists/read_test b/test/syscall_test/blocklists/read_test similarity index 100% rename from regression/syscall_test/blocklists/read_test rename to test/syscall_test/blocklists/read_test diff --git a/regression/syscall_test/blocklists/readv_test b/test/syscall_test/blocklists/readv_test similarity index 100% rename from regression/syscall_test/blocklists/readv_test rename to test/syscall_test/blocklists/readv_test diff --git a/regression/syscall_test/blocklists/rename_test b/test/syscall_test/blocklists/rename_test similarity index 100% rename from regression/syscall_test/blocklists/rename_test rename to test/syscall_test/blocklists/rename_test diff --git a/regression/syscall_test/blocklists/sendfile_test b/test/syscall_test/blocklists/sendfile_test similarity index 100% rename from regression/syscall_test/blocklists/sendfile_test rename to test/syscall_test/blocklists/sendfile_test diff --git a/regression/syscall_test/blocklists/stat_test b/test/syscall_test/blocklists/stat_test similarity index 100% rename from regression/syscall_test/blocklists/stat_test rename to test/syscall_test/blocklists/stat_test diff --git a/regression/syscall_test/blocklists/statfs_test b/test/syscall_test/blocklists/statfs_test similarity index 100% rename from regression/syscall_test/blocklists/statfs_test rename to test/syscall_test/blocklists/statfs_test diff --git a/regression/syscall_test/blocklists/symlink_test b/test/syscall_test/blocklists/symlink_test similarity index 100% rename from regression/syscall_test/blocklists/symlink_test rename to test/syscall_test/blocklists/symlink_test diff --git a/regression/syscall_test/blocklists/sync_test b/test/syscall_test/blocklists/sync_test similarity index 100% rename from regression/syscall_test/blocklists/sync_test rename to test/syscall_test/blocklists/sync_test diff --git a/regression/syscall_test/blocklists/timers_test b/test/syscall_test/blocklists/timers_test similarity index 100% rename from regression/syscall_test/blocklists/timers_test rename to test/syscall_test/blocklists/timers_test diff --git a/regression/syscall_test/blocklists/truncate_test b/test/syscall_test/blocklists/truncate_test similarity index 100% rename from regression/syscall_test/blocklists/truncate_test rename to test/syscall_test/blocklists/truncate_test diff --git a/regression/syscall_test/blocklists/uidgid_test b/test/syscall_test/blocklists/uidgid_test similarity index 100% rename from regression/syscall_test/blocklists/uidgid_test rename to test/syscall_test/blocklists/uidgid_test diff --git a/regression/syscall_test/blocklists/unlink_test b/test/syscall_test/blocklists/unlink_test similarity index 100% rename from regression/syscall_test/blocklists/unlink_test rename to test/syscall_test/blocklists/unlink_test diff --git a/regression/syscall_test/blocklists/utimes_test b/test/syscall_test/blocklists/utimes_test similarity index 100% rename from regression/syscall_test/blocklists/utimes_test rename to test/syscall_test/blocklists/utimes_test diff --git a/regression/syscall_test/blocklists/write_test b/test/syscall_test/blocklists/write_test similarity index 100% rename from regression/syscall_test/blocklists/write_test rename to test/syscall_test/blocklists/write_test diff --git a/regression/syscall_test/run_syscall_test.sh b/test/syscall_test/run_syscall_test.sh similarity index 100% rename from regression/syscall_test/run_syscall_test.sh rename to test/syscall_test/run_syscall_test.sh diff --git a/tools/docker/Dockerfile.jinja b/tools/docker/Dockerfile.jinja index e7fd810c..110cde00 100644 --- a/tools/docker/Dockerfile.jinja +++ b/tools/docker/Dockerfile.jinja @@ -83,7 +83,7 @@ RUN rm -rf bazel FROM build-bazel as syscall_test # Build the syscall test binaries -COPY regression/syscall_test /root/syscall_test +COPY test/syscall_test /root/syscall_test WORKDIR /root/syscall_test RUN export BUILD_DIR=build && \ make ${BUILD_DIR}/syscall_test_bins @@ -233,7 +233,7 @@ FROM rust # Install all Asterinas dependent packages RUN apt update && apt-get install -y --no-install-recommends \ - clang-format `# formatting regression tests` \ + clang-format `# formatting general tests` \ cpio \ cpuid \ exfatprogs \ diff --git a/tools/qemu_args.sh b/tools/qemu_args.sh index b07ff91a..eaf66704 100755 --- a/tools/qemu_args.sh +++ b/tools/qemu_args.sh @@ -25,8 +25,8 @@ COMMON_QEMU_ARGS="\ -netdev user,id=net01,hostfwd=tcp::$RAND_PORT_NUM1-:22,hostfwd=tcp::$RAND_PORT_NUM2-:8080 \ -object filter-dump,id=filter0,netdev=net01,file=virtio-net.pcap \ -device isa-debug-exit,iobase=0xf4,iosize=0x04 \ - -drive if=none,format=raw,id=x0,file=./regression/build/ext2.img \ - -drive if=none,format=raw,id=x1,file=./regression/build/exfat.img \ + -drive if=none,format=raw,id=x0,file=./test/build/ext2.img \ + -drive if=none,format=raw,id=x1,file=./test/build/exfat.img \ " if [ "$1" = "iommu" ]; then