mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
936fc23e3c
This patch splits the protocol tests from: protocol_types_test.c protocol_client_test.c and creates the following files: protocol_common.[ch] - common code for data types protocol_common_ctdb.[ch] - common code for ctdb protocol elements protocol_common_event.[ch] - common code for eventd protocol elements protocol_basic_test.c - basic data types protocol_types_test.c - ctdb data types protocol_ctdb_test.c - ctdb protocol protocol_event_test.c - eventd protocol Signed-off-by: Amitay Isaacs <amitay@gmail.com> Reviewed-by: Martin Schwenke <martin@meltin.net>
10 lines
123 B
Bash
Executable File
10 lines
123 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
ok_null
|
|
|
|
for i in $(seq 1 1000) ; do
|
|
unit_test protocol_basic_test $i
|
|
done
|