c4ffc05574
Replace instances in tests of mostly LGPL-2.1 license boilerplate with SPDX tags. Signed-off-by: Rob Herring <robh@kernel.org> Message-Id: <20190620211944.9378-5-robh@kernel.org> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
36 lines
801 B
C
36 lines
801 B
C
// SPDX-License-Identifier: LGPL-2.1-or-later
|
|
/*
|
|
* libfdt - Flat Device Tree manipulation
|
|
* Testcase for misbehaviour on a truncated property
|
|
* Copyright (C) 2006 David Gibson, IBM Corporation.
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdint.h>
|
|
|
|
#include <libfdt.h>
|
|
|
|
#include "tests.h"
|
|
#include "testdata.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
void *fdt = &truncated_property;
|
|
const void *prop;
|
|
int len;
|
|
|
|
test_init(argc, argv);
|
|
|
|
vg_prepare_blob(fdt, fdt_totalsize(fdt));
|
|
|
|
prop = fdt_getprop(fdt, 0, "truncated", &len);
|
|
if (prop)
|
|
FAIL("fdt_getprop() succeeded on truncated property");
|
|
if (len != -FDT_ERR_BADSTRUCTURE)
|
|
FAIL("fdt_getprop() failed with \"%s\" instead of \"%s\"",
|
|
fdt_strerror(len), fdt_strerror(-FDT_ERR_BADSTRUCTURE));
|
|
|
|
PASS();
|
|
}
|