mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-20 04:56:32 +00:00
Polish the list of the system call test suites
This commit is contained in:
@ -1,9 +1,34 @@
|
|||||||
# SPDX-License-Identifier: MPL-2.0
|
# SPDX-License-Identifier: MPL-2.0
|
||||||
|
|
||||||
TESTS ?= chmod_test chown_test fsync_test getdents_test link_test lseek_test mkdir_test \
|
# A list of enabled system call test suites from Gvisor.
|
||||||
open_create_test open_test pty_test read_test rename_test stat_test \
|
# Each test suite consists of multiple test cases,
|
||||||
statfs_test symlink_test sync_test truncate_test uidgid_test unlink_test \
|
# some of which are disabled by the blocklists.
|
||||||
vdso_clock_gettime_test write_test alarm_test
|
#
|
||||||
|
# Please keep the list sorted by name.
|
||||||
|
TESTS ?= \
|
||||||
|
alarm_test \
|
||||||
|
chmod_test \
|
||||||
|
chown_test \
|
||||||
|
fsync_test \
|
||||||
|
getdents_test \
|
||||||
|
link_test \
|
||||||
|
lseek_test \
|
||||||
|
mkdir_test \
|
||||||
|
open_create_test \
|
||||||
|
open_test \
|
||||||
|
pty_test \
|
||||||
|
read_test \
|
||||||
|
rename_test \
|
||||||
|
stat_test \
|
||||||
|
statfs_test \
|
||||||
|
symlink_test \
|
||||||
|
sync_test \
|
||||||
|
truncate_test \
|
||||||
|
uidgid_test \
|
||||||
|
unlink_test \
|
||||||
|
vdso_clock_gettime_test \
|
||||||
|
write_test \
|
||||||
|
# The end of the list
|
||||||
|
|
||||||
MKFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
|
MKFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
|
||||||
CUR_DIR := $(patsubst %/,%,$(dir $(MKFILE_PATH)))
|
CUR_DIR := $(patsubst %/,%,$(dir $(MKFILE_PATH)))
|
||||||
|
Reference in New Issue
Block a user