2016-01-07 21:44:22 +03:00
|
|
|
// Copyright (c) 2015-2016 The Khronos Group Inc.
|
2015-09-10 21:00:00 +03:00
|
|
|
//
|
2016-09-01 22:33:59 +03:00
|
|
|
// 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
|
2015-09-10 21:00:00 +03:00
|
|
|
//
|
2016-09-01 22:33:59 +03:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2015-09-10 21:00:00 +03:00
|
|
|
//
|
2016-09-01 22:33:59 +03:00
|
|
|
// 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.
|
2015-09-10 21:00:00 +03:00
|
|
|
|
2018-08-03 22:06:09 +03:00
|
|
|
#include "test/test_fixture.h"
|
2015-09-10 21:00:00 +03:00
|
|
|
|
2018-07-11 16:24:49 +03:00
|
|
|
namespace svptools {
|
2015-09-10 21:00:00 +03:00
|
|
|
namespace {
|
|
|
|
|
2016-04-21 22:46:08 +03:00
|
|
|
using spvtest::ScopedContext;
|
2015-09-21 18:36:44 +03:00
|
|
|
using spvtest::TextToBinaryTest;
|
2015-09-10 21:00:00 +03:00
|
|
|
|
2019-09-11 20:15:25 +03:00
|
|
|
TEST_F(TextToBinaryTest, InstOpcodeProducesResultIDButNoIDDefinedFails) {
|
2015-09-29 18:28:34 +03:00
|
|
|
SetText("OpTypeMatrix %1 %2 1000");
|
2016-04-19 05:25:35 +03:00
|
|
|
EXPECT_EQ(SPV_ERROR_INVALID_TEXT,
|
|
|
|
spvTextToBinary(ScopedContext().context, text.str, text.length,
|
|
|
|
&binary, &diagnostic));
|
2015-09-18 18:50:54 +03:00
|
|
|
ASSERT_NE(nullptr, diagnostic);
|
2015-09-10 21:00:00 +03:00
|
|
|
EXPECT_STREQ(
|
|
|
|
"Expected <result-id> at the beginning of an instruction, found "
|
2015-09-29 18:28:34 +03:00
|
|
|
"'OpTypeMatrix'.",
|
2015-09-10 21:00:00 +03:00
|
|
|
diagnostic->error);
|
2015-11-18 17:22:10 +03:00
|
|
|
EXPECT_EQ(0u, diagnostic->position.line);
|
2015-09-10 21:00:00 +03:00
|
|
|
}
|
|
|
|
|
2019-09-11 20:15:25 +03:00
|
|
|
TEST_F(TextToBinaryTest,
|
|
|
|
InstDefinesResultIDButOpcodeDoesNotProduceAResultFails) {
|
|
|
|
SetText("\n\n%foo = OpName %1 \"bar\"");
|
|
|
|
EXPECT_EQ(SPV_ERROR_INVALID_TEXT,
|
|
|
|
spvTextToBinary(ScopedContext().context, text.str, text.length,
|
|
|
|
&binary, &diagnostic));
|
|
|
|
ASSERT_NE(nullptr, diagnostic);
|
|
|
|
EXPECT_STREQ(
|
|
|
|
"Cannot set ID %foo because OpName does not produce a result ID.",
|
|
|
|
diagnostic->error);
|
|
|
|
EXPECT_EQ(2u, diagnostic->position.line);
|
|
|
|
}
|
|
|
|
|
2018-07-11 16:24:49 +03:00
|
|
|
} // namespace
|
|
|
|
} // namespace svptools
|