summaryrefslogtreecommitdiffstats
path: root/test/w3c/convert-tests.sh
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2017-06-06 13:28:53 (GMT)
committerStefan Radomski <github@mintwerk.de>2017-06-06 13:28:53 (GMT)
commit88d2ee4fab0c2924da0b9c9bcc238262a05c0602 (patch)
tree36ddc26afab6780aa44aaa98e19b16512f7a07bd /test/w3c/convert-tests.sh
parentee41921b7dfdd91e2a416040e9a7aa0087ff554a (diff)
downloaduscxml-88d2ee4fab0c2924da0b9c9bcc238262a05c0602.zip
uscxml-88d2ee4fab0c2924da0b9c9bcc238262a05c0602.tar.gz
uscxml-88d2ee4fab0c2924da0b9c9bcc238262a05c0602.tar.bz2
Proper XML encoding names
Diffstat (limited to 'test/w3c/convert-tests.sh')
-rwxr-xr-xtest/w3c/convert-tests.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/w3c/convert-tests.sh b/test/w3c/convert-tests.sh
index 0adf253..cb138a2 100755
--- a/test/w3c/convert-tests.sh
+++ b/test/w3c/convert-tests.sh
@@ -135,7 +135,7 @@ find ./jexl -type f -exec grep -Ili 'datamodel="ecmascript"' {} \; |xargs rm -fv
find ./jexl -type f -exec grep -Ili 'datamodel="null"' {} \; |xargs rm -fv
# create other encoding tests from the utf8 one
-for ENC in ISO-8859-15 CP1250 CP1252;
+for ENC in ISO-8859-15 WINDOWS-1252;
do
export ENC=$ENC
find . -name "test-enc-UTF8.scxml" -exec sh -c 'sed "s/UTF-8/${ENC}/g" {} > $(dirname {})/test-enc-${ENC}.tmp.scxml' \;