Skip to content

Commit

Permalink
RISCV/lua: disable an exception handling test case
Browse files Browse the repository at this point in the history
Somehow, in Ubuntu 20.04 filter::lua@RISCV cannot handle
exceptions as x64/aarch64 handles.

Issue nnstreamer#4342 will track this.

Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
  • Loading branch information
myungjoo committed Dec 6, 2023
1 parent d070d93 commit 2d6d140
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/nnstreamer_filter_lua/unittest_filter_lua.cc
Original file line number Diff line number Diff line change
Expand Up @@ -675,6 +675,13 @@ end
NULL,
};

#ifdef __riscv
GTEST_SKIP ();
/** @todo Exception handling in filter::lua for RISCV
* Somehow, nnstreamer::lua in riscv64 at Ubuntu 20.02
* cannot handle exceptions nicely. */
#endif

output.size = input.size = sizeof (uint8_t) * 3 * 100 * 100 * 1;

/* alloc input data without alignment */
Expand Down

0 comments on commit 2d6d140

Please sign in to comment.