blob: e0eefe0463f6080d9b84a06e047d23fee5ac82ad (
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 runTests
runTests()
|