确保我们一次初始化每个变量一次

问题描述 投票:1回答:1

下面是来自LLVM的异常处理库libcxxabi的测试(顺便说一下,它使用LLVM的堆栈展开库libunwind):

// libcxxabi\test\test_guard.pass.cpp
...
// Ensure that we initialize each variable once and only once.
namespace test1 {
    static int run_count = 0;
    int increment() {
        ++run_count;
        return 0;
    }
    void helper() {
        static int a = increment();
        ((void)a);
    }
    void test() {
        static int a = increment(); ((void)a);
        assert(run_count == 1);
        static int b = increment(); ((void)b);
        assert(run_count == 2);
        helper();
        assert(run_count == 3);
        helper();
        assert(run_count == 3);
    }
}

...

int main()
{
    test1::test();
}

也许我错过了一些明显的东西,但我不确定这个测试背后的想法是什么(它测试什么以及如何测试)。你有什么想法?

为什么这三个变量

static int run_count
static int a (in test(), not in helper())
static int b 

宣称是静态的?

c++ testing static c++14 llvm
1个回答
1
投票

这是一个确保编译器正常工作的测试。它应该传递任何确认c ++编译器。

我猜这是一个快速的健全性检查,会有更多深入的测试,可能更难理解为什么他们在一个错误的编译器上失败了。

变量被声明为static,以确保正确初始化各种形式的静态变量,并且只调用初始化器一次。

© www.soinside.com 2019 - 2024. All rights reserved.