simple container tests

* add a simple test script to check everything is ok in container
This commit is contained in:
Gilles Grandou 2023-12-04 22:34:37 +01:00
parent e0b228799f
commit d4df0a1abd
1 changed files with 16 additions and 0 deletions

16
tests.sh Executable file
View File

@ -0,0 +1,16 @@
#!/bin/bash -e
cat /etc/os-release
echo
set -x
sudo id
python3 --version
g++ --version | head -1
gvim --version | head -1
xterm -e /bin/bash -c "sleep 1"
date
set +x
echo "[OK]"