2016-01-07 18:44:22 +00:00
|
|
|
// Copyright (c) 2015-2016 The Khronos Group Inc.
|
2015-09-10 18:00:00 +00:00
|
|
|
//
|
2016-09-01 19:33:59 +00: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 18:00:00 +00:00
|
|
|
//
|
2016-09-01 19:33:59 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2015-09-10 18:00:00 +00:00
|
|
|
//
|
2016-09-01 19:33:59 +00: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 18:00:00 +00:00
|
|
|
|
2016-09-22 15:05:30 +00:00
|
|
|
#include "test_fixture.h"
|
2015-09-10 18:00:00 +00:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2016-04-21 19:46:08 +00:00
|
|
|
using spvtest::ScopedContext;
|
2015-09-21 15:36:44 +00:00
|
|
|
using spvtest::TextToBinaryTest;
|
2015-09-10 18:00:00 +00:00
|
|
|
|
2015-11-05 22:45:09 +00:00
|
|
|
TEST_F(TextToBinaryTest, NotPlacingResultIDAtTheBeginning) {
|
2015-09-29 15:28:34 +00:00
|
|
|
SetText("OpTypeMatrix %1 %2 1000");
|
2016-04-19 02:25:35 +00:00
|
|
|
EXPECT_EQ(SPV_ERROR_INVALID_TEXT,
|
|
|
|
spvTextToBinary(ScopedContext().context, text.str, text.length,
|
|
|
|
&binary, &diagnostic));
|
2015-09-18 15:50:54 +00:00
|
|
|
ASSERT_NE(nullptr, diagnostic);
|
2015-09-10 18:00:00 +00:00
|
|
|
EXPECT_STREQ(
|
|
|
|
"Expected <result-id> at the beginning of an instruction, found "
|
2015-09-29 15:28:34 +00:00
|
|
|
"'OpTypeMatrix'.",
|
2015-09-10 18:00:00 +00:00
|
|
|
diagnostic->error);
|
2015-11-18 14:22:10 +00:00
|
|
|
EXPECT_EQ(0u, diagnostic->position.line);
|
2015-09-10 18:00:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // anonymous namespace
|