summaryrefslogtreecommitdiffstats
path: root/tests/test_cmark_spec/spec.sh
blob: c85139033ba1c031e5e716cd34d66d64f3d930e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env bash

set -e

REPO="https://github.com/commonmark/CommonMark.git"
VERSION="0.30"

function main {
    echo "Cloning from repo: $REPO..."
    git clone --quiet $REPO

    echo "Using version $VERSION..."
    cd "CommonMark"
    git checkout --quiet $VERSION

    echo "Dumping tests file..."
    python3 "test/spec_tests.py" --dump-tests > "../commonmark.json"

    echo "Cleaning up..."
    cd ..
    rm -rf CommonMark

    echo "Done."
}

main