带有cfg文件的Hello World llvm-lit

时间:2018-06-24 09:02:26

标签: testing llvm

我正在尝试使用llvm-lit运行一个简单的测试。我有一个专用目录:

llvm-lit-dir
+---lit.cfg
+---llvm_lit_example.c

cfg文件来自llvm-3.8.0 / utils / lit / lit / ExampleTests.ObjDir。 在这里:

$ cat lit.cfg
config.example_obj_root = os.path.dirname(__file__)
lit.load_config(config, os.path.join(config.test_source_root,'lit.cfg'))

这是我要检查的示例:

$ cat llvm_lit_example.c
// RUN: %clang -o %t0 %s
// RUN: %t0 | grep "YES"

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

int main(int argc, char **argv)
{
    int i=rand()%4;

    char s1[5]={'0','1','2','3', 0 };
    char s2[5]={'0','1','2','3', 0 };

    s1[i]='6';

    if (strcmp(s1,s2) == 0) printf("NO \n");
    if (strcmp(s1,s2) != 0) printf("YES\n");
}

我尝试了几种选择,但似乎都没有用:

$ llvm-lit llvm-lit-dir/llvm_lit_example.c
llvm-lit: TestingConfig.py:114: fatal: unable to parse config file '/home//llvm-lit-dir/lit.site.cfg', traceback: Traceback (most recent call last):
File "/home/llvm-3.8.0/llvm/utils/lit/lit/TestingConfig.py", line 101, in load_from_path
  exec(compile(data, path, 'exec'), cfg_globals, None)
File "/home/llvm-lit-dir/lit.site.cfg", line 14, in <module>
  lit.load_config(config, os.path.join(config.test_source_root,'lit.cfg'))
NameError: name 'lit' is not defined

我在做什么错?谢谢!

2 个答案:

答案 0 :(得分:1)

此配置是python源。 lit显然是未定义的。尝试导入与照明相关的内容,例如from lit.llvm import llvm_config。看看LLVM源代码中的test/lit.cfg.py

答案 1 :(得分:1)

以下是极简的“ hello world”示例,该示例现在对我有用:

配置文件: lit.cfg

import lit.formats

config.name = "LIT hello world"
config.test_format = lit.formats.ShTest("0")

测试文件:测试/测试

; RUN: echo "Foo" | FileCheck %s
; CHECK: Foo

运行

lit -v tests/test

要使测试失败,请将其更改为echo "Bar"


另外两条评论:

1)安装lit很容易:

pip3 install lit

要安装FileCheck,我必须下载LLVM源代码(LLVM Download page)并使用CMake构建FileCheck目标。

2)config.test_format = lit.formats.ShTest("0")很重要,因为否则点亮失败并出现以下错误:

AttributeError: 'NoneType' object has no attribute 'execute'

ShTest似乎是默认格式,但是用户仍然必须手动激活它。