#!/bin/bash

# Always run the tests from this script's folder
cd "$(dirname "$0")" || exit 1

# Read default configuration
# shellcheck source=test/_include.sh
source ../_include.sh

# Test files user supplied files ($@) otherwise test everything
# shellcheck disable=SC2068
for file_path in ${@:-../scripts/*.sed ../parsing/*.sed}
do

    output_file=$(basename "$file_path").html

    # Generate the HTML version
    test_message "Generating $output_file"
    $sedsed --htmlize -f "$file_path" > "$output_file" || failed=1
done

tests_git_status
tests_exit
