Displaying 10 results from an estimated 10 matches for "llvmdb".
Did you mean:
llvmbb
2004 Nov 29
1
[LLVMdev] QMTest vs. Dejagnu
> > Cons of QMTest:
> > 1) You have to use the gui to add directories.
>
> I think you're wrong. Manually creating a directory would work, as QMTest does
> not place anything special in directories.
I may have worded this poorly, but I think you have to use the gui to add
new directories or tests, or specific tests. Otherwise, it does not know
what to do with those
2004 Jun 09
1
[LLVMdev] Testing backend
...tests are run QMTest which just "knows" what to do with the test
> file. In many cases there is a RUN: line which instructs the test
> harness how to run the test.
In fact, I've already tried to run the tests with QMTest, bypassing Makefiles,
but I get numerous error in QMTest/llvmdb.py. It appears the file was written
against older version of QMTest (I have 2.1.2 here). I've made some attempt
to port to current QMTest, but haven't finished yet.
What QMTest version do you use?
- Volodya
2003 Dec 02
0
[LLVMdev] Re: how to solve following question
...9, in Execute
> File "/lib/qm/qm/test/cmdline.py", line 1173, in __ExecuteRun
> File "/lib/qm/qm/test/database.py", line 1043, in ExpandIds
> File "/lib/qm/qm/test/suite.py", line 123, in GetAllTestAndSuiteIds
> File "/home/yue/llvm/test/QMTest/llvmdb.py", line 228, in GetSuite
> (dirs, files) = self.GetDirsAndFiles (suitepath)
> File "/home/yue/llvm/test/QMTest/llvmdb.py", line 160, in GetDirsAndFiles
> tests=os.listdir (dirpath)
> OSError: [Errno 2] No such file or directory:
> '/home/yue/llvm/test/...
2004 Jun 20
2
[LLVMdev] qmtest problem
...File "/home/wanderer/pkg/qmtest/lib/qm/test/database.py", line 922, in
ExpandIds
if self.HasSuite(id):
File "/home/wanderer/pkg/qmtest/lib/qm/test/database.py", line 685, in
HasSuite
self.GetSuite(suite_id)
File "/usr/home/wanderer/pkg/build/llvm/obj/test/QMTest/llvmdb.py", line
224, in GetSuite
suitepath = self.dbpath + '/' + self.LabelToPath (suite_id)
File "/home/wanderer/pkg/qmtest/lib/qm/extension.py", line 113, in
__getattr__
raise AttributeError, name
AttributeError: LabelToPath
---X8---------------
I check qmtest/lib/qm/...
2004 Sep 05
0
[LLVMdev] POST MORTEM: llvm-test changes
...Could not load test.
qmtest.exception:
qm.test.database.NoSuchTestError: There is no test with the test ID "".
qmtest.traceback:
File "/lib/qm/qm/test/execution_engine.py", line 181, in _RunTests
File "/usr/home/llvm/obj/test/QMTest/llvmdb.py", line 91, in GetTest
raise qm.test.database.NoSuchTestError(self)
Next:
Feature.cc.packed : FAIL , expected PASS
Failed to convert /usr/home/llvm/obj/test/tmp/feature-cc-packed.ll to C code.
qmtest.target:
local
And fin...
2004 Jun 20
0
[LLVMdev] qmtest problem
...qmtest/lib/qm/test/database.py", line 922, in
> ExpandIds
> if self.HasSuite(id):
> File "/home/wanderer/pkg/qmtest/lib/qm/test/database.py", line 685, in
> HasSuite
> self.GetSuite(suite_id)
> File "/usr/home/wanderer/pkg/build/llvm/obj/test/QMTest/llvmdb.py", line
> 224, in GetSuite
> suitepath = self.dbpath + '/' + self.LabelToPath (suite_id)
> File "/home/wanderer/pkg/qmtest/lib/qm/extension.py", line 113, in
> __getattr__
> raise AttributeError, name
> AttributeError: LabelToPath
>
> ---X...
2004 Jun 09
0
[LLVMdev] Testing backend
Vladimir,
The makefile for the feature tests is in the directory above. Simply:
cd ~/llvm/test
make Feature.t
This works for the regression tests to:
make Regression.t
The tests are run QMTest which just "knows" what to do with the test
file. In many cases there is a RUN: line which instructs the test
harness how to run the test.
On Wed, 2004-06-09 at 05:18, Vladimir Prus wrote:
2004 Jun 09
3
[LLVMdev] Testing backend
I've finally managed to bring my backend to a minimally working form. I can
compile three small examples with arithmetic operations, branches and phi
operations. However, there surely is a lot of omissions and bugs.
How do I test a backend. For obvious reasons, I'd prefer a number of really
small tests, to make debugging easier. I see some number of such small tests
in
2004 Sep 05
2
[LLVMdev] POST MORTEM: llvm-test changes
Jeff,
Actually, that was my fault. I forgot to remove the non-existent
directories from the configure.ac file. That's done and committed
now, so the advice is still the same: update configure script :)
Reid.
On Sun, 2004-09-05 at 09:53, Jeff Cohen wrote:
> Configure gives me these errors on FreeBSD. I'm proceding with the build anyway to see what happens. Don't worry :)
2004 Sep 05
2
[LLVMdev] POST MORTEM: llvm-test changes
...test.exception:
> qm.test.database.NoSuchTestError: There is no test with the test ID "".
>
> qmtest.traceback:
>
> File "/lib/qm/qm/test/execution_engine.py", line 181, in _RunTests
> File "/usr/home/llvm/obj/test/QMTest/llvmdb.py", line 91, in GetTest
> raise qm.test.database.NoSuchTestError(self)
>
Known problem. Test needs to be added to the database. :(
John?
>
> Next:
>
> Feature.cc.packed : FAIL , expected PASS
> Failed to conv...