summaryrefslogtreecommitdiff
path: root/tests/aslts/src/runtime/collections/complex/result/tests/roptional/MAIN.asl
diff options
context:
space:
mode:
authorErik Schmauss <erik.schmauss@intel.com>2017-09-11 13:27:53 -0700
committerErik Schmauss <erik.schmauss@intel.com>2017-11-10 14:36:41 -0800
commit407244a52d8242871952b5d682c363b3a797734f (patch)
tree8420d9b9ff9a9bddddaa18b6995d28e0c6622ded /tests/aslts/src/runtime/collections/complex/result/tests/roptional/MAIN.asl
parentfe4aa377eb9786a47e23614576cb1e513dd59bba (diff)
downloadacpica-407244a52d8242871952b5d682c363b3a797734f.tar.gz
ASLTS: converting files to ASL plus with converter
functional/control test case has been left unconverted for readability of deeply nested control statements (if, switch, while) Signed-off-by: Erik Schmauss <erik.schmauss@intel.com>
Diffstat (limited to 'tests/aslts/src/runtime/collections/complex/result/tests/roptional/MAIN.asl')
-rw-r--r--tests/aslts/src/runtime/collections/complex/result/tests/roptional/MAIN.asl43
1 files changed, 17 insertions, 26 deletions
diff --git a/tests/aslts/src/runtime/collections/complex/result/tests/roptional/MAIN.asl b/tests/aslts/src/runtime/collections/complex/result/tests/roptional/MAIN.asl
index d42118edf..815f7ead4 100644
--- a/tests/aslts/src/runtime/collections/complex/result/tests/roptional/MAIN.asl
+++ b/tests/aslts/src/runtime/collections/complex/result/tests/roptional/MAIN.asl
@@ -25,32 +25,23 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+DefinitionBlock ("roptional", "DSDT", 2, "Intel", "Many", 0x00000001)
+{
+ /* All declarations */
+ Include ("../../../../../../runtime/cntl/DECL_6UP.asl")
+ Include ("../../../../../../runtime/collections/complex/result/common/rcommon.asl")
+ Include ("../../../../../../runtime/collections/complex/result/tests/roptional/roptional.asl")
+ Method (MAIN, 0, NotSerialized)
+ {
+ /* Initialization */
-DefinitionBlock(
- "roptional.aml", // Output filename
- "DSDT", // Signature
- 0x02, // DSDT Revision
- "Intel", // OEMID
- "Many", // TABLE ID
- 0x00000001 // OEM Revision
- ) {
+ STRT (0x00)
+ /* Run verification methods */
+ Include ("../../../../../../runtime/collections/complex/result/tests/roptional/RUN.asl")
+ /* Final actions */
- // All declarations
- Include("../../../../../../runtime/cntl/DECL_6UP.asl")
- Include("../../../../../../runtime/collections/complex/result/common/rcommon.asl")
- Include("../../../../../../runtime/collections/complex/result/tests/roptional/roptional.asl")
-
- Method(MAIN) {
-
- // Initialization
- STRT(0)
-
- // Run verification methods
- Include("../../../../../../runtime/collections/complex/result/tests/roptional/RUN.asl")
-
- // Final actions
- Store(FNSH(), Local7)
-
- return (Local7)
- }
+ Store (FNSH (), Local7)
+ Return (Local7)
+ }
}
+