summaryrefslogtreecommitdiff
path: root/tests/aslts/src/runtime/collections/complex
diff options
context:
space:
mode:
authorRobert Moore <Robert.Moore@intel.com>2012-11-16 09:01:17 -0800
committerRobert Moore <Robert.Moore@intel.com>2012-11-16 09:01:17 -0800
commit8f69e2b6f8e80a2bd043b4973e4fb763eb49a694 (patch)
tree32066bb06df1ed72a7ebc38b8c9a660f099e8d9b /tests/aslts/src/runtime/collections/complex
parentc93543b857d51088970c65abc79cb28d5cebf0aa (diff)
downloadacpica-8f69e2b6f8e80a2bd043b4973e4fb763eb49a694.tar.gz
ASLTS: Remove a test case for ObjectType operator.
Removed a test that invokes a control method for an ObjectType argument. This does not work properly (method is not invoked), and the ability to use this construct is being removed from the grammar for ObjectType. (Requires a change to the ACPI specification.) Chao Guan.
Diffstat (limited to 'tests/aslts/src/runtime/collections/complex')
-rw-r--r--tests/aslts/src/runtime/collections/complex/misc/misc.asl26
1 files changed, 15 insertions, 11 deletions
diff --git a/tests/aslts/src/runtime/collections/complex/misc/misc.asl b/tests/aslts/src/runtime/collections/complex/misc/misc.asl
index 2a52401a3..23dff2bbc 100644
--- a/tests/aslts/src/runtime/collections/complex/misc/misc.asl
+++ b/tests/aslts/src/runtime/collections/complex/misc/misc.asl
@@ -799,17 +799,21 @@ Method(m124, 1)
}
// Bug 81.
- Store(ObjectType(m000()), Local0)
- if (LNotEqual(Local0, c009)) {
- err(arg0, z054, 44, 0, 0, Local0, c009)
- }
-
- Store(ObjectType(m001(123)), Local1)
- if (LNotEqual(Local1, c009)) {
- err(arg0, z054, 45, 0, 0, Local1, c009)
- }
-
- CH03(arg0, z054, 0x106, 0, 0)
+ /*
+ * Removed, invalid test.
+ * Compiler disallow method invocation as an operand to ObjectType.
+ */
+ //Store(ObjectType(m000()), Local0)
+ //if (LNotEqual(Local0, c009)) {
+ // err(arg0, z054, 44, 0, 0, Local0, c009)
+ //}
+ //
+ //Store(ObjectType(m001(123)), Local1)
+ //if (LNotEqual(Local1, c009)) {
+ // err(arg0, z054, 45, 0, 0, Local1, c009)
+ //}
+ //
+ //CH03(arg0, z054, 0x106, 0, 0)
}
/*