mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
3b842d5a62
The regex in InsetListings::getCaption() does not work with C++11 and std::regex. This can now be checked easily by this new unit test.
8 lines
136 B
Bash
Executable File
8 lines
136 B
Bash
Executable File
#!/bin/sh
|
|
|
|
regfile=`cat ${srcdir}/tests/regfiles/ListingsCaption`
|
|
output=`./check_ListingsCaption`
|
|
|
|
test "$regfile" = "$output"
|
|
exit $?
|