<feed xmlns='http://www.w3.org/2005/Atom'>
<title>liblitmus.git/tests, branch 2012.1</title>
<subtitle>[ARCHIVE] The userspace library for LITMUS^RT 2010. Now on GitHub.</subtitle>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/liblitmus.git/'/>
<entry>
<title>tests: add valid budget_policy to rt_task parameters</title>
<updated>2011-08-26T14:57:34+00:00</updated>
<author>
<name>Andrea Bastoni</name>
<email>bastoni@cs.unc.edu</email>
</author>
<published>2011-08-26T14:55:43+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/liblitmus.git/commit/?id=d691d4545dc0594bc4bf13c4c07eeeaf73c3b232'/>
<id>d691d4545dc0594bc4bf13c4c07eeeaf73c3b232</id>
<content type='text'>
Since set_rt_task_param() checks for wrong budget policies,
make sure to specify a valid policy to avoid errors like the following.

litmus: real-time task 3635 rejected because unsupported budget enforcement policy specified
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since set_rt_task_param() checks for wrong budget policies,
make sure to specify a valid policy to avoid errors like the following.

litmus: real-time task 3635 rejected because unsupported budget enforcement policy specified
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: allow 'LITMUS' as an alias of all non-Linux plugins</title>
<updated>2011-02-03T22:40:16+00:00</updated>
<author>
<name>Bjoern B. Brandenburg</name>
<email>bbb@cs.unc.edu</email>
</author>
<published>2011-01-30T00:23:54+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/liblitmus.git/commit/?id=ed2742a29674222173147b73f223bc7be01e1eaf'/>
<id>ed2742a29674222173147b73f223bc7be01e1eaf</id>
<content type='text'>
This is useful for tests that apply to any plugin.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is useful for tests that apply to any plugin.
</pre>
</div>
</content>
</entry>
<entry>
<title>add test cases for the FMLP and SRP under GSN- and PSN-EDF</title>
<updated>2011-02-03T22:40:16+00:00</updated>
<author>
<name>Bjoern B. Brandenburg</name>
<email>bbb@cs.unc.edu</email>
</author>
<published>2011-01-30T00:16:24+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/liblitmus.git/commit/?id=5ec8a4d481017390da5ae4de027e937bc04c21ec'/>
<id>5ec8a4d481017390da5ae4de027e937bc04c21ec</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>switch to generic locking system calls</title>
<updated>2011-02-03T22:40:16+00:00</updated>
<author>
<name>Bjoern B. Brandenburg</name>
<email>bbb@cs.unc.edu</email>
</author>
<published>2011-01-29T19:53:21+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/liblitmus.git/commit/?id=c4128b99e1206d03d15c5d2e1b6af164bf261c40'/>
<id>c4128b99e1206d03d15c5d2e1b6af164bf261c40</id>
<content type='text'>
The new generic lock layer in LITMUS^RT does away with per-protocol
system calls. Change accordingly.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The new generic lock layer in LITMUS^RT does away with per-protocol
system calls. Change accordingly.
</pre>
</div>
</content>
</entry>
<entry>
<title>add test that checks that RT class is not inherited across fork</title>
<updated>2011-02-01T21:06:22+00:00</updated>
<author>
<name>Bjoern B. Brandenburg</name>
<email>bbb@cs.unc.edu</email>
</author>
<published>2011-01-29T21:37:14+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/liblitmus.git/commit/?id=cb877fc8f376d253e95898737f1fa60718b9facf'/>
<id>cb877fc8f376d253e95898737f1fa60718b9facf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor: switch back from SCons to make</title>
<updated>2010-11-09T21:35:32+00:00</updated>
<author>
<name>Bjoern B. Brandenburg</name>
<email>bbb@cs.unc.edu</email>
</author>
<published>2010-11-06T18:34:18+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/liblitmus.git/commit/?id=35b88760be5b5dbda859f4697702efc0b3cd2663'/>
<id>35b88760be5b5dbda859f4697702efc0b3cd2663</id>
<content type='text'>
We originally switched from make to scons because
1) our makefiles were not very good;
2) SCons promised to make maintaining the build system simpler.

Unfortunately, SCons has become more and more difficult to deal with
as we moved to supporting several architecture and cross compilation,
to the extend that we ended up re-creating make functionality in SCons.

So let's switch back to make using a "clean" Makefile.

Thanks a lot to Andrea Bastoni and Chris Kenna for feedback on
previous iterations of these patches.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We originally switched from make to scons because
1) our makefiles were not very good;
2) SCons promised to make maintaining the build system simpler.

Unfortunately, SCons has become more and more difficult to deal with
as we moved to supporting several architecture and cross compilation,
to the extend that we ended up re-creating make functionality in SCons.

So let's switch back to make using a "clean" Makefile.

Thanks a lot to Andrea Bastoni and Chris Kenna for feedback on
previous iterations of these patches.
</pre>
</div>
</content>
</entry>
<entry>
<title>Silence warning due to missing header file.</title>
<updated>2010-11-09T21:35:32+00:00</updated>
<author>
<name>Bjoern B. Brandenburg</name>
<email>bbb@cs.unc.edu</email>
</author>
<published>2010-11-06T20:15:46+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/liblitmus.git/commit/?id=b8c51805f5c71d1921ac7315125723b1e175ca5e'/>
<id>b8c51805f5c71d1921ac7315125723b1e175ca5e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add job control test case.</title>
<updated>2010-02-26T15:42:43+00:00</updated>
<author>
<name>Bjoern B. Brandenburg</name>
<email>bbb@cs.unc.edu</email>
</author>
<published>2010-02-26T15:42:43+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/liblitmus.git/commit/?id=2ace28d0725a47529a18ebac4c7c75bcf61446b9'/>
<id>2ace28d0725a47529a18ebac4c7c75bcf61446b9</id>
<content type='text'>
Passes.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Passes.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add test for set_rt_task_param parameter validation.</title>
<updated>2010-02-26T14:23:03+00:00</updated>
<author>
<name>Bjoern B. Brandenburg</name>
<email>bbb@cs.unc.edu</email>
</author>
<published>2010-02-26T14:23:03+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/liblitmus.git/commit/?id=e3098fcce693f90fee6464233c075fbaddc04b07'/>
<id>e3098fcce693f90fee6464233c075fbaddc04b07</id>
<content type='text'>
All passed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
All passed.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add tests for invalid object types and od_open().</title>
<updated>2010-02-26T00:41:14+00:00</updated>
<author>
<name>Bjoern B. Brandenburg</name>
<email>bbb@cs.unc.edu</email>
</author>
<published>2010-02-26T00:41:14+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/liblitmus.git/commit/?id=173c328f23f5c8b3519068f731a6db35488bbd25'/>
<id>173c328f23f5c8b3519068f731a6db35488bbd25</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
