mirror of
https://github.com/samba-team/samba.git
synced 2025-01-25 06:04:04 +03:00
14 lines
185 B
Bash
14 lines
185 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
||
|
|
||
|
output=$(
|
||
|
for i in $(seq 0 1023) ; do
|
||
|
echo "WARNING: attempt to remove unset id $i in idtree"
|
||
|
done
|
||
|
)
|
||
|
|
||
|
ok "$output"
|
||
|
|
||
|
unit_test reqid_test
|