mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-28 12:26:59 +00:00
46f7b578b2
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.
8 lines
126 B
Bash
Executable File
8 lines
126 B
Bash
Executable File
#!/bin/sh
|
|
|
|
regfile=`cat ${srcdir}/tests/regfiles/trivstring`
|
|
output=`./check_trivstring`
|
|
|
|
test "$regfile" = "$output"
|
|
exit $?
|