blob: 0a12ee46165c06d4ae1c960e1e75d706c475bf0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/usr/bin/env python
# **********************************************************************
#
# Copyright (c) 2003-present 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__)
|