mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
13 lines
289 B
Bash
13 lines
289 B
Bash
|
#!/bin/sh
|
||
|
# Run the waf duplicate symbol check, wrapped in subunit.
|
||
|
|
||
|
. lib/subunit/shell/share/subunit.sh
|
||
|
|
||
|
subunit_start_test duplicate_symbols
|
||
|
|
||
|
if ./buildtools/bin/waf build --dup-symbol-check; then
|
||
|
subunit_pass_test duplicate_symbols
|
||
|
else
|
||
|
echo | subunit_fail_test duplicate_symbols
|
||
|
fi
|