diff options
author | Benoit Foucher <benoit@zeroc.com> | 2018-11-07 14:31:23 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2018-11-07 14:31:23 +0100 |
commit | 85387729498cbdc1c6640cc82763f1605ee279a3 (patch) | |
tree | 09a079a8688135625fdffe2bf575f7135961090b /scripts/Component.py | |
parent | Minor fixes for CI test failures (diff) | |
download | ice-85387729498cbdc1c6640cc82763f1605ee279a3.tar.bz2 ice-85387729498cbdc1c6640cc82763f1605ee279a3.tar.xz ice-85387729498cbdc1c6640cc82763f1605ee279a3.zip |
Renamed ts to typescript for tests
Diffstat (limited to 'scripts/Component.py')
-rw-r--r-- | scripts/Component.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Component.py b/scripts/Component.py index 4d4d10fc78c..9e8f6cfe030 100644 --- a/scripts/Component.py +++ b/scripts/Component.py @@ -110,7 +110,7 @@ class Ice(Component): "Ice/logger", "Ice/properties"]) elif isinstance(mapping, JavaScriptMapping): - return ([], ["ts/.*", "es5/*"]) + return ([], ["typescript/.*", "es5/*"]) return ([], []) def canRun(self, testId, mapping, current): @@ -236,7 +236,7 @@ for m in filter(lambda x: os.path.isdir(os.path.join(toplevel, x)), os.listdir(t Mapping.add(m, PhpMapping(), component) elif m == "js" or re.match("js-.*", m): Mapping.add(m, JavaScriptMapping(), component) - Mapping.add("ts", TypeScriptMapping(), component, "js") + Mapping.add("typescript", TypeScriptMapping(), component, "js") elif m == "objective-c" or re.match("objective-c-*", m): Mapping.add(m, ObjCMapping(), component) elif m == "csharp" or re.match("charp-.*", m): |