mirror of
https://github.com/ZeroTier/ZeroTierOne
synced 2025-08-14 02:27:38 -07:00
ZT_NC_NWID patch + (WIP) test script modifications
This commit is contained in:
parent
2196d982c3
commit
d9b12be697
28 changed files with 1148 additions and 57 deletions
27
netcon/docker-test/build_tests.sh
Executable file
27
netcon/docker-test/build_tests.sh
Executable file
|
@ -0,0 +1,27 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Merely BUILDS test images
|
||||
|
||||
# Remove previous test results
|
||||
rm _results/*.txt
|
||||
|
||||
# How long we shall wait for each test to conclude
|
||||
export netcon_test_wait_time=60s
|
||||
|
||||
export image_build_script=build_single_image.sh
|
||||
|
||||
# Iterate over all depth=2 (relatively-speaking) directories and perform each test
|
||||
find . -mindepth 2 -maxdepth 2 -type d | while read testdir; do
|
||||
echo "*** Building: '$testdir'..."
|
||||
rm _results/*.tmp
|
||||
|
||||
# Stage scripts
|
||||
cp $image_build_script $testdir/$image_build_script
|
||||
cd $testdir
|
||||
|
||||
# Build test docker images
|
||||
./$image_build_script
|
||||
rm $image_build_script
|
||||
|
||||
cd ../../
|
||||
done
|
Loading…
Add table
Add a link
Reference in a new issue