blob: 5e7b075e3970842e657f222c86d43cb77cf38551 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env python
#
# 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__)
|