Skip to content
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
20 changes: 1 addition & 19 deletions tests/command_list
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ chrt
chsh
cifscreds
cifsiostat
cifs.upcall
cksum
clear
clockdiff
Expand All @@ -178,8 +179,6 @@ compute_member
compute_relabel
consoletype
containerd
containerd-shim
containerd-shim-runc-v1
containerd-shim-runc-v2
containerd-stress
continue
Expand Down Expand Up @@ -243,16 +242,6 @@ disown
dltest
dmesg
dnsdomainname
dnssec-cds
dnssec-dsfromkey
dnssec-importkey
dnssec-keyfromlabel
dnssec-keygen
dnssec-ksr
dnssec-revoke
dnssec-settime
dnssec-signzone
dnssec-verify
do
docker
dockerd
Expand Down Expand Up @@ -804,7 +793,6 @@ mariadb-waitpid
matchpathcon
mcookie
md5sum
mdig
mesg
microsoft365
mii-tool
Expand Down Expand Up @@ -881,13 +869,9 @@ mysqltest_embedded
mysql_upgrade
mysql_waitpid
mytop
named
named-checkconf
named-checkzone
named-compilezone
named-journalprint
named-nzd2nzf
named-rrchecker
namei
nameif
nano
Expand Down Expand Up @@ -1089,8 +1073,6 @@ rmdir
rmiregistry
rmmod
rnano
rndc
rndc-confgen
rootlesskit
rootlesskit-docker-proxy
route
Expand Down
5 changes: 2 additions & 3 deletions tests/test.sh
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
#!/bin/bash
set -euo pipefail

# Run all the unit tests

# make test files read/write by all users
chmod -R a+rw /tests

# If we don't have test user created, create them
id -u csuser 2>/dev/null

if [ $? != 0 ]; then
if ! id -u csuser &>/dev/null; then
echo "Creating user"
adduser -m --uid 9527 csuser
fi
Expand Down