povray: add smoke test (#21667)

This commit is contained in:
ketsubouchi 2021-02-17 07:54:20 +09:00 committed by GitHub
parent aed52d7e79
commit 1fe51ffe18
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -147,3 +147,11 @@ def configure_args(self):
extra_args.append('--without-x')
return extra_args
def test(self):
povs = find(self.prefix.share, 'biscuit.pov')[0]
copy(povs, '.')
self.run_test('povray', options=['biscuit.pov'],
purpose="test: render sample file",
expected=['POV-Ray finished']
)