File: test_duplicate_symbol.sh

package info (click to toggle)
tevent 0.14.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,836 kB
  • sloc: python: 35,616; ansic: 26,167; xml: 812; sh: 228; makefile: 157
file content (15 lines) | stat: -rwxr-xr-x 332 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
# Run the waf duplicate symbol check, wrapped in subunit.

. testprogs/blackbox/subunit.sh

subunit_start_test duplicate_symbols

PYTHONHASHSEED=1
export PYTHONHASHSEED

if $PYTHON ./buildtools/bin/waf build --dup-symbol-check; then
	subunit_pass_test duplicate_symbols
else
	echo | subunit_fail_test duplicate_symbols
fi