summaryrefslogtreecommitdiffstats
path: root/tests/test_commonmark/spec.sh
blob: 034fd86e5e6a1c67fcf66ed982e0bdc4a98fa165 (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.29"

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