lyx_mirror/src/support/tests/test_trivstring
Georg Baum 46f7b578b2 First version of trivstring class (bug #9336)
As discused on the list. This is not used yet, but it is intended to provide
thread-safe read-access without the need for synchronization if the used STL
implementation does not provide it for std::basic_string. This is the case for
all implementations using copy-on-write.
2014-12-07 13:14:17 +01:00

8 lines
126 B
Bash
Executable File

#!/bin/sh
regfile=`cat ${srcdir}/tests/regfiles/trivstring`
output=`./check_trivstring`
test "$regfile" = "$output"
exit $?