From e9672ca1dd7dd6694849817afcd4bec93534684e Mon Sep 17 00:00:00 2001 From: Patrick Shriwise Date: Thu, 4 Oct 2018 12:25:23 -0500 Subject: [PATCH] Adding call to to the voxel conversion script. --- tests/regression_tests/plot/test.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/regression_tests/plot/test.py b/tests/regression_tests/plot/test.py index bfaef019c1..2fec279d22 100644 --- a/tests/regression_tests/plot/test.py +++ b/tests/regression_tests/plot/test.py @@ -1,7 +1,7 @@ import glob import hashlib import os - +from subprocess import call import h5py import openmc @@ -52,6 +52,10 @@ class PlotTestHarness(TestHarness): sha512.update(outstr) outstr = sha512.hexdigest() + # test the voxel to vtk conversion script + call(['../../../scripts/openmc-voxel-to-vtk'] + + glob.glob('plot_4.h5')) + return outstr