Hello to all LLVM devs, I'm interested in knowing if there is a specific part in the LLVM test suite to test new features of the C++11 standard (fragments of code, some applications...). I have just found a test suite for libcxx: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/ However, it only targets the standard library and I'm interested in the novel features "not included" in the standard library (for instance, auto, final keyword, decltype...) BTW, does anyone know an open-source application where the C++11 standard is widely used? Thanks in advance. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20141103/a4cfdb61/attachment.html>
You are looking for C++ language tests, which are in clang tests. http://llvm.org/viewvc/llvm-project/cfe/trunk/test/ 2014-11-03 10:34 GMT+02:00 victor <pedretti_86 at hotmail.com>:> Hello to all LLVM devs, > > I'm interested in knowing if there is a specific part in the LLVM test > suite to test new features of the C++11 standard (fragments of code, some > applications...). I have just found a test suite for libcxx: > > http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/ > > However, it only targets the standard library and I'm interested in the > novel features "not included" in the standard library (for instance, auto, > final keyword, decltype...) > > BTW, does anyone know an open-source application where the C++11 standard > is widely used? > > Thanks in advance. > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20141103/b436d248/attachment.html>
Thanks Yaron. However, these tests are really dispersed and not very clear... I wonder if there is something similar to: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Benchmarks/Prolangs-C%2B%2B/office/ but specifically designed using C++11 features; little-sized applications with a purpose like this one simulating an office or something like that. From: yaron.keren at gmail.com Date: Mon, 3 Nov 2014 10:41:52 +0200 Subject: Re: [LLVMdev] Testing C++11 standard features To: pedretti_86 at hotmail.com CC: llvmdev at cs.uiuc.edu You are looking for C++ language tests, which are in clang tests. http://llvm.org/viewvc/llvm-project/cfe/trunk/test/ 2014-11-03 10:34 GMT+02:00 victor <pedretti_86 at hotmail.com>: Hello to all LLVM devs, I'm interested in knowing if there is a specific part in the LLVM test suite to test new features of the C++11 standard (fragments of code, some applications...). I have just found a test suite for libcxx: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/ However, it only targets the standard library and I'm interested in the novel features "not included" in the standard library (for instance, auto, final keyword, decltype...) BTW, does anyone know an open-source application where the C++11 standard is widely used? Thanks in advance. _______________________________________________ LLVM Developers mailing list LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20141103/fade73c9/attachment.html>