mirror of
https://github.com/Z3Prover/z3
synced 2025-06-07 06:33:23 +00:00
13 lines
274 B
Python
13 lines
274 B
Python
############################################
|
|
# Copyright (c) 2012 Microsoft Corporation
|
|
#
|
|
# Z3 Python interface
|
|
#
|
|
# Author: Leonardo de Moura (leonardo)
|
|
############################################
|
|
import z3, doctest
|
|
|
|
r = doctest.testmod(z3)
|
|
if r.failed != 0:
|
|
exit(1)
|
|
|