libjxl

FORK: libjxl patches used on blog
git clone https://git.neptards.moe/blog/libjxl.git
Log | Files | Refs | Submodules | README | LICENSE

iaca_test.cc (462B)


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