blob: e25d9316d59b24eddd7633c4ac86ddc3bc2286d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Copyright (c) the JPEG XL Project Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
#include "lib/jxl/base/iaca.h"
#include "lib/jxl/testing.h"
namespace jxl {
namespace {
TEST(IacaTest, MarkersDefaultToDisabledAndDoNotCrash) {
BeginIACA();
EndIACA();
}
TEST(IacaTest, ScopeDefaultToDisabledAndDoNotCrash) { ScopeIACA iaca; }
} // namespace
} // namespace jxl
|