mirror of https://github.com/KLayout/klayout.git
Added test
This commit is contained in:
parent
27549e006d
commit
dbadeb47fe
|
|
@ -177,6 +177,17 @@ END
|
||||||
macro.run
|
macro.run
|
||||||
assert_equal(context.value, "x42")
|
assert_equal(context.value, "x42")
|
||||||
|
|
||||||
|
begin
|
||||||
|
pya.eval_string("\n1/0")
|
||||||
|
rescue => ex
|
||||||
|
puts "Got exception (expected): " + ex.to_s
|
||||||
|
assert_equal(ex.to_s.index("ZeroDivisionError") != nil, true)
|
||||||
|
assert_equal(ex.to_s.index("division by zero") != nil, true)
|
||||||
|
# bug #1771
|
||||||
|
assert_equal(ex.to_s.index("(eval)") != nil, true)
|
||||||
|
assert_equal(ex.to_s.index(":2") != nil, true)
|
||||||
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue