Add session snapshot scripts

This commit is contained in:
Michael Hohn
2023-11-26 13:13:41 -08:00
committed by =Michael Hohn
parent 8ac0490289
commit 5b294a18c8
2 changed files with 46 additions and 0 deletions

31
cruft/snapshot-query Executable file
View File

@@ -0,0 +1,31 @@
#!/bin/bash
usage="Take a snapshot of the current session.ql
Usage:
$0 TheSnapShotName
"
if [ $# -ne 1 ]
then
echo "$usage"
exit 1
fi
if [ "$1" = "-h" ]
then
echo "$usage"
exit 1
fi
qname=$1
# create the tests
mkdir tests/$qname
touch tests/$qname/$qname.expected
echo $qname.ql > tests/$qname/$qname.qlref
git add tests/$qname/$qname.*
# snapshot the session
cp session.ql solutions/$qname.ql
git add solutions/$qname.ql
# usage=snapshot-query ShowCmdFlowPath