blob: 2241653995d5765273e607a6b9f58688063c1f5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env python3
#
# Copyright (c) ZeroC, Inc. All rights reserved.
#
import os, sys
sys.path.append(os.path.join(os.path.dirname(__file__), "..", "scripts"))
from Util import runTestsWithPath
runTestsWithPath(__file__)
|