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