2023-08-16 00:20:26 +10:00
|
|
|
# SPDX-FileCopyrightText: 2009-2022 Blender Authors
|
2023-06-15 13:09:04 +10:00
|
|
|
#
|
2022-02-11 09:07:11 +11:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
2020-12-17 20:44:55 +05:30
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
import bpy
|
|
|
|
|
|
|
|
sys.path.append(os.path.dirname(os.path.realpath(__file__)))
|
2021-07-27 21:00:28 +05:30
|
|
|
from modules.mesh_test import RunTest, ModifierSpec, SpecMeshTest
|
2020-12-17 20:44:55 +05:30
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
test = [
|
|
|
|
# World coordinates of test and expected object should be same.
|
2021-07-27 21:00:28 +05:30
|
|
|
SpecMeshTest("PlaneOcean", "testObjPlaneOcean", "expObjPlaneOcean",
|
2022-04-19 15:25:55 +10:00
|
|
|
[ModifierSpec('Ocean', 'OCEAN', {})]),
|
2020-12-17 20:44:55 +05:30
|
|
|
]
|
|
|
|
ocean_test = RunTest(test)
|
|
|
|
|
|
|
|
command = list(sys.argv)
|
|
|
|
for i, cmd in enumerate(command):
|
|
|
|
if cmd == "--run-all-tests":
|
|
|
|
ocean_test.apply_modifiers = True
|
|
|
|
ocean_test.do_compare = True
|
|
|
|
ocean_test.run_all_tests()
|
|
|
|
break
|
|
|
|
elif cmd == "--run-test":
|
|
|
|
ocean_test.apply_modifiers = False
|
|
|
|
ocean_test.do_compare = False
|
|
|
|
name = command[i + 1]
|
|
|
|
ocean_test.run_test(name)
|
|
|
|
break
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|