mirror of
https://github.com/acpica/acpica/
synced 2025-02-15 21:14:06 +03:00
![Robert Moore](/assets/img/avatar_default.png)
This patch fixes the failure reported for the following ASLTS test: exceptions:exc_result2:m692-Inc-Exc (32/64 bit slack mode) exceptions:exc_result2:m692-Dec-Exc (32/64 bit slack mode) The test cases expect exceptions generated for mismatched types during implicit conversions happened to Increment/Decrement opcodes. And the [Unitialized] object could never be converted into object with any other types. But the "FAIL" is emitted due to the slack mode which converts [Uninitialized] operand into 0-valued Integer, thus no type mismatch can be examined for these test cases. The command to confirm this test: aslts.sh -m s32 -m s64 -c exc_result2 -t The result in __STATUS_OF_TESTS before applying this fix: ":STST:exceptions:exc_result2:m692-Inc-Exc:FAIL:Errors # 02 00 00 00:" ":STST:exceptions:exc_result2:m692-Dec-Exc:FAIL:Errors # 02 00 00 00:" The result in __STATUS_OF_TESTS after applying this fix: ":STST:exceptions:exc_result2:m692-Inc-Exc:PASS:" ":STST:exceptions:exc_result2:m692-Dec-Exc:PASS:" Signed-off-by: Lv Zheng <lv.zheng@intel.com>
…
Description
No description provided
Languages
ASL
68.6%
C
29%
Yacc
0.8%
HTML
0.5%
Shell
0.5%
Other
0.6%