aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/test-abstraction-ssp.sh
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2026-05-15 17:37:37 -0400
committerRalph Amissah <ralph.amissah@gmail.com>2026-05-15 19:25:14 -0400
commit28a30710fafeb423acaa7dad82f9daf009023b4c (patch)
tree7cc2751bf3c03292ee70b192ecfa8627285635b6 /test/test-abstraction-ssp.sh
parentorg files cosmetic, remove word BUG (diff)
ssp test-abstraction-ssp.sh script minor
- test/test-abstraction-ssp.sh script minor improvement - result change reflects content corrections: name spelling & a markup error, document abstracton, ssp verified ok (may be considered a test) (assisted by Claude-Code)
Diffstat (limited to 'test/test-abstraction-ssp.sh')
-rwxr-xr-xtest/test-abstraction-ssp.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/test-abstraction-ssp.sh b/test/test-abstraction-ssp.sh
index 28502ea..d03f70c 100755
--- a/test/test-abstraction-ssp.sh
+++ b/test/test-abstraction-ssp.sh
@@ -22,7 +22,12 @@ set -e
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
SPINE_DIR="$(cd "$SCRIPT_DIR/.." && pwd)"
-SAMPLES_DIR="$SPINE_DIR/../sisudoc-spine-samples/markup/pod-samples/pod"
+SAMPLES_RAW="$SPINE_DIR/$SpinePOD"
+if [ -d "$SAMPLES_RAW" ]; then
+ SAMPLES_DIR="$(cd "$SAMPLES_RAW" && pwd)"
+else
+ SAMPLES_DIR="$SAMPLES_RAW"
+fi
REF_DIR="$SCRIPT_DIR/reference/abstraction"
TMP_DIR="$SCRIPT_DIR/current/abstraction"