summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRobert Moore <Robert.Moore@intel.com>2011-04-13 08:32:54 -0700
committerRobert Moore <Robert.Moore@intel.com>2011-04-13 08:32:54 -0700
commit2a4a42a8c20e47fa17881ae2cf1c084bd2d864d0 (patch)
tree17265b9ce5027d6149baace39876e92b5b2a3ac5 /tests
parentcfbcf49663c159cbdaf3ac0efced971fab9eb97e (diff)
downloadacpica-2a4a42a8c20e47fa17881ae2cf1c084bd2d864d0.tar.gz
Tests: Update aslts for tighter iASL return value checking.
Fixed two cases where a test defined a method that did not explicitly return a value, then later expected a return value.
Diffstat (limited to 'tests')
-rw-r--r--tests/aslts/src/runtime/collections/bdemo/ACPICA/0187/DECL.asl2
-rw-r--r--tests/aslts/src/runtime/collections/functional/table/unload.asl2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0187/DECL.asl b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0187/DECL.asl
index e0b038739..b36a211c6 100644
--- a/tests/aslts/src/runtime/collections/bdemo/ACPICA/0187/DECL.asl
+++ b/tests/aslts/src/runtime/collections/bdemo/ACPICA/0187/DECL.asl
@@ -38,7 +38,7 @@ Method(mf70)
Method(m000)
{
- Return
+ Return(0)
}
// m000
diff --git a/tests/aslts/src/runtime/collections/functional/table/unload.asl b/tests/aslts/src/runtime/collections/functional/table/unload.asl
index b8c175791..f8e093108 100644
--- a/tests/aslts/src/runtime/collections/functional/table/unload.asl
+++ b/tests/aslts/src/runtime/collections/functional/table/unload.asl
@@ -605,7 +605,7 @@ Device(DTM1) {
{
Name(DDB0, 0)
- Method(m000) {Return }
+ Method(m000) {Return (0) }
Method(m001) {Return (DDB0)}
Concatenate(arg0, "-tst5", arg0)