Files
Matthew Jimenez 9dda2f0e57 TEST: Update to cxxtest-4.4
Additional changes added from our existing modifcations and unreleased updates from cxxtest code
A replacement for Commit 25e5e17 is not yet applied.
2026-05-14 18:42:10 +02:00

19 lines
433 B
Python
Executable File

#!/usr/bin/env python
import sys
import os.path
try:
import cxxtest.cxxtestgen
except ImportError:
currdir = os.path.dirname(os.path.abspath(__file__))
if sys.version_info < (3,0):
sys.path.append( os.path.abspath( os.path.sep.join([currdir, '..']) ) )
else:
sys.path.append( os.path.abspath( os.path.sep.join([currdir, '..', python3]) ) )
import cxxtest.cxxtestgen
cxxtest.cxxtestgen.main()