blob: c86c09cd662e0e3ef98c4821a37509f66951ca56 [file] [log] [blame]
// Copyright 2023 The Tint Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "src/tint/ir/transform/add_empty_entry_point.h"
#include <utility>
#include "src/tint/ir/transform/test_helper.h"
namespace tint::ir::transform {
namespace {
using IR_AddEmptyEntryPointTest = TransformTest;
TEST_F(IR_AddEmptyEntryPointTest, EmptyModule) {
auto* expect = R"(
%fn1 = func unused_entry_point():void [@compute @workgroup_size(1, 1, 1)] -> %fn2
%fn2 = block {
br %fn3 # return
}
%fn3 = func_terminator
)";
Run<AddEmptyEntryPoint>();
EXPECT_EQ(expect, str());
}
TEST_F(IR_AddEmptyEntryPointTest, ExistingEntryPoint) {
auto* ep =
b.CreateFunction("main", mod.types.Get<type::Void>(), Function::PipelineStage::kFragment);
ep->StartTarget()->SetInstructions(utils::Vector{b.Branch(ep->EndTarget())});
mod.functions.Push(ep);
auto* expect = R"(
%fn1 = func main():void [@fragment] -> %fn2
%fn2 = block {
br %fn3 # return
}
%fn3 = func_terminator
)";
Run<AddEmptyEntryPoint>();
EXPECT_EQ(expect, str());
}
} // namespace
} // namespace tint::ir::transform