Commit 109fb06f authored by Alan Maguire's avatar Alan Maguire Committed by Shuah Khan
Browse files

kunit: move string-stream.h to lib/kunit



string-stream interfaces are not intended for external use;
move them from include/kunit to lib/kunit accordingly.

Co-developed-by: default avatarKnut Omang <knut.omang@oracle.com>
Signed-off-by: default avatarKnut Omang <knut.omang@oracle.com>
Signed-off-by: default avatarAlan Maguire <alan.maguire@oracle.com>
Reviewed-by: default avatarBrendan Higgins <brendanhiggins@google.com>
Tested-by: default avatarBrendan Higgins <brendanhiggins@google.com>
Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
parent 4d944bcd
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -9,10 +9,11 @@
#ifndef _KUNIT_ASSERT_H
#ifndef _KUNIT_ASSERT_H
#define _KUNIT_ASSERT_H
#define _KUNIT_ASSERT_H


#include <kunit/string-stream.h>
#include <linux/err.h>
#include <linux/err.h>
#include <linux/kernel.h>


struct kunit;
struct kunit;
struct string_stream;


/**
/**
 * enum kunit_assert_type - Type of expectation/assertion.
 * enum kunit_assert_type - Type of expectation/assertion.
+2 −0
Original line number Original line Diff line number Diff line
@@ -7,6 +7,8 @@
 */
 */
#include <kunit/assert.h>
#include <kunit/assert.h>


#include "string-stream.h"

void kunit_base_assert_format(const struct kunit_assert *assert,
void kunit_base_assert_format(const struct kunit_assert *assert,
			      struct string_stream *stream)
			      struct string_stream *stream)
{
{
+2 −1
Original line number Original line Diff line number Diff line
@@ -6,10 +6,11 @@
 * Author: Brendan Higgins <brendanhiggins@google.com>
 * Author: Brendan Higgins <brendanhiggins@google.com>
 */
 */


#include <kunit/string-stream.h>
#include <kunit/test.h>
#include <kunit/test.h>
#include <linux/slab.h>
#include <linux/slab.h>


#include "string-stream.h"

static void string_stream_test_empty_on_creation(struct kunit *test)
static void string_stream_test_empty_on_creation(struct kunit *test)
{
{
	struct string_stream *stream = alloc_string_stream(test, GFP_KERNEL);
	struct string_stream *stream = alloc_string_stream(test, GFP_KERNEL);
+2 −1
Original line number Original line Diff line number Diff line
@@ -6,11 +6,12 @@
 * Author: Brendan Higgins <brendanhiggins@google.com>
 * Author: Brendan Higgins <brendanhiggins@google.com>
 */
 */


#include <kunit/string-stream.h>
#include <kunit/test.h>
#include <kunit/test.h>
#include <linux/list.h>
#include <linux/list.h>
#include <linux/slab.h>
#include <linux/slab.h>


#include "string-stream.h"

struct string_stream_fragment_alloc_context {
struct string_stream_fragment_alloc_context {
	struct kunit *test;
	struct kunit *test;
	int len;
	int len;
Loading