18c2ecf20Sopenharmony_ci#!/bin/sh 28c2ecf20Sopenharmony_ci# SPDX-License-Identifier: GPL-2.0 38c2ecf20Sopenharmony_ci# description: %HERE DESCRIBE WHAT THIS DOES% 48c2ecf20Sopenharmony_ci# requires: %HERE LIST THE REQUIRED FILES, TRACERS OR README-STRINGS% 58c2ecf20Sopenharmony_ci# The required tracer needs :tracer suffix, e.g. function:tracer 68c2ecf20Sopenharmony_ci# The required README string needs :README suffix, e.g. "x8/16/32/64":README 78c2ecf20Sopenharmony_ci# and the README string is treated as a fixed-string instead of regexp pattern. 88c2ecf20Sopenharmony_ci# you have to add ".tc" extention for your testcase file 98c2ecf20Sopenharmony_ci# Note that all tests are run with "errexit" option. 108c2ecf20Sopenharmony_ci 118c2ecf20Sopenharmony_ciexit 0 # Return 0 if the test is passed, otherwise return !0 128c2ecf20Sopenharmony_ci# Or you can call exit_pass for passed test, and exit_fail for failed test. 138c2ecf20Sopenharmony_ci# If the test could not run because of lack of feature, call exit_unsupported 148c2ecf20Sopenharmony_ci# If the test returned unclear results, call exit_unresolved 158c2ecf20Sopenharmony_ci# If the test is a dummy, or a placeholder, call exit_untested 16