summaryrefslogtreecommitdiff
path: root/scripts/Component.py
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2018-10-23 19:49:14 +0200
committerJose <jose@zeroc.com>2018-10-23 19:49:47 +0200
commita506fd7dc4b829714998e723fec68f03904cb5bb (patch)
tree41cef6f37edee25333f84cb1d860b3b18902c7a5 /scripts/Component.py
parentWrite typescript imports inside module declaration (diff)
downloadice-a506fd7dc4b829714998e723fec68f03904cb5bb.tar.bz2
ice-a506fd7dc4b829714998e723fec68f03904cb5bb.tar.xz
ice-a506fd7dc4b829714998e723fec68f03904cb5bb.zip
Fix filters for JavaScript/TypeScript testing
Diffstat (limited to 'scripts/Component.py')
-rw-r--r--scripts/Component.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Component.py b/scripts/Component.py
index c3b9e62a2f5..773e4d677c9 100644
--- a/scripts/Component.py
+++ b/scripts/Component.py
@@ -110,8 +110,8 @@ class Ice(Component):
"Ice/logger",
"Ice/properties"])
elif isinstance(mapping, JavaScriptMapping):
- return ([],
- ["ts/*"] + (["Slice/escape", "Ice/properties"] if config.typescript else []))
+ return (["Ice/.*", "Glacier2/.*"],
+ (["Slice/escape", "Ice/properties"] if config.typescript else []))
return ([], [])
def canRun(self, testId, mapping, current):