Re: [PATCH v7 11/12] lib: add kasan test module

2014-11-25 Thread Andrey Ryabinin
On 11/25/2014 02:14 PM, Dmitry Chernenkov wrote: > I have a bit of concern about tests. > A) they are not fully automated, there is no checking whether they > pass or not. This is implemented in our repository using special tags > in the log >

Re: [PATCH v7 11/12] lib: add kasan test module

2014-11-25 Thread Dmitry Chernenkov
I have a bit of concern about tests. A) they are not fully automated, there is no checking whether they pass or not. This is implemented in our repository using special tags in the log (https://github.com/google/kasan/commit/33b267553e7ffe66d5207152a3294112361b75fe; don't mmind the TODOs, they

Re: [PATCH v7 11/12] lib: add kasan test module

2014-11-25 Thread Dmitry Chernenkov
I have a bit of concern about tests. A) they are not fully automated, there is no checking whether they pass or not. This is implemented in our repository using special tags in the log (https://github.com/google/kasan/commit/33b267553e7ffe66d5207152a3294112361b75fe; don't mmind the TODOs, they

Re: [PATCH v7 11/12] lib: add kasan test module

2014-11-25 Thread Andrey Ryabinin
On 11/25/2014 02:14 PM, Dmitry Chernenkov wrote: I have a bit of concern about tests. A) they are not fully automated, there is no checking whether they pass or not. This is implemented in our repository using special tags in the log

[PATCH v7 11/12] lib: add kasan test module

2014-11-24 Thread Andrey Ryabinin
This is a test module doing various nasty things like out of bounds accesses, use after free. It is useful for testing kernel debugging features like kernel address sanitizer. It mostly concentrates on testing of slab allocator, but we might want to add more different stuff here in future (like

[PATCH v7 11/12] lib: add kasan test module

2014-11-24 Thread Andrey Ryabinin
This is a test module doing various nasty things like out of bounds accesses, use after free. It is useful for testing kernel debugging features like kernel address sanitizer. It mostly concentrates on testing of slab allocator, but we might want to add more different stuff here in future (like