aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/tutorial/make_example.sh
blob: 9891443e41f6e1286b46342cf14b6e1b4a6d55cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
dirname=`dirname $1`
filename=`basename $1`
unset VALGRIND
unset TEST_SUBSET

echo "<div class=\"example\" id=\"$dirname\">"
echo "<h2>$filename</h2>"
echo "<pre class=\"prettyprint linenums\">"
(cd $dirname && cat $filename) | ./vespalib_xml_escape_app
echo "</pre>"
echo "<pre class=\"output\">"
(cd $dirname && ./vespalib_${filename%.cpp}_app 2>&1) | ./vespalib_xml_escape_app
echo "</pre>"
echo "</div>"