blob: 85c82bc9c5664a18a1697ad049043d8d66d7ce09 [file] [log] [blame]
Stella Laurenzo2616ac72022-08-01 10:47:25 -07001# Copyright 2022 The IREE Authors
2#
3# Licensed under the Apache License v2.0 with LLVM Exceptions.
4# See https://llvm.org/LICENSE.txt for license information.
5# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
7if(NOT IREE_BUILD_PYTHON_BINDINGS)
8 return()
9endif()
10
Scott Todd8b44f612024-07-18 23:21:11 -070011# These tests use compiler APIs as well as runtime APIs.
12if(NOT IREE_BUILD_COMPILER)
bjacobdf119bd2023-06-16 10:27:00 -040013 return()
14endif()
15
Stella Laurenzo2616ac72022-08-01 10:47:25 -070016iree_py_test(
17 NAME
18 decode_secret_message_sample
19 SRCS
20 "decode_secret_message.py"
21)