123456789101112131415161718192021222324252627282930313233 |
- #!/usr/bin/python
- # -*- coding: utf-8 -*-
- """
- Copyright (c) Contributors to the Open 3D Engine Project.
- For complete copyright and license terms please see the LICENSE at the root of this distribution.
- SPDX-License-Identifier: Apache-2.0 OR MIT
- """
- import sys
- import os
- import re
- result = 0 # to define for sub-tests
- resultFailed = 0 # to define for sub-tests
- def doTests(compiler, silent, az3rdParty):
- global result
- global resultFailed
- # Working directory should have been set to this script's directory by the calling parent
- # You can get it once doTests() is called, but not during initialization of the module,
- # because at that time it will still be set to the working directory of the calling script
- workDir = os.getcwd()
- azslShaderFileList = ["build-surface.azsl", "simple-surface.azsl", "build-compute.azsl", "../Samples/Enumeration.azsl"]
- # Here's one bonus success for you.
- # This script is deprecated - it's being moved to the Platform/ folders and will be deleted after merging
- result += 1
- if __name__ == "__main__":
- print ("please call from testapp.py")
|