summaryrefslogtreecommitdiff
path: root/src/tests/clutter/interactive/meson/gen-test-unit-names.sh
blob: 72c5bf362cf8070bfe61716a3087bf2273d19dbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

outputfile=$1
shift

echo '/* ** This file is autogenerated. Do not edit. ** */' > "$outputfile"
echo '' >> "$outputfile"
echo 'const char *test_unit_names[] = {' >> "$outputfile"

for test_source_file in "$@"; do
  echo "  \"$(echo "$test_source_file" | sed 's/.*\(test-[a-z0-9\-]\+\)\.c/\1/')\"," >> "$outputfile"
done

echo '};' >> "$outputfile"