blob: d6140249c054d652631d54d7c855b84aae260d3b [file] [log] [blame]
David Gibson7ba551f2006-12-01 16:59:43 +11001/*
2 * libfdt - Flat Device Tree manipulation
3 * Basic testcase for read-only access
4 * Copyright (C) 2006 David Gibson, IBM Corporation.
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public License
8 * as published by the Free Software Foundation; either version 2.1 of
9 * the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include <stdlib.h>
22#include <stdio.h>
23#include <string.h>
24#include <limits.h>
David Gibson857f54e2007-03-23 15:16:54 +110025#include <stdint.h>
David Gibson7ba551f2006-12-01 16:59:43 +110026
27#include <fdt.h>
28#include <libfdt.h>
29
30#include "tests.h"
31#include "testdata.h"
32
33int main(int argc, char *argv[])
34{
David Gibson73d60922006-12-15 15:12:47 +110035 void *fdt, *fdt1;
David Gibson7ba551f2006-12-01 16:59:43 +110036 void *buf;
37 int oldsize, bufsize, packsize;
38 int err;
39 const char *inname;
40 char outname[PATH_MAX];
41
42 test_init(argc, argv);
43 fdt = load_blob_arg(argc, argv);
44 inname = argv[1];
45
46 oldsize = fdt_totalsize(fdt);
47
48 bufsize = oldsize * 2;
49
50 buf = xmalloc(bufsize);
51
David Gibson73d60922006-12-15 15:12:47 +110052 fdt1 = buf;
53 err = fdt_open_into(fdt, fdt1, bufsize);
54 if (err)
David Gibson7ba551f2006-12-01 16:59:43 +110055 FAIL("fdt_open_into(): %s", fdt_strerror(err));
56 sprintf(outname, "opened.%s", inname);
57 save_blob(outname, fdt1);
58
David Gibson73d60922006-12-15 15:12:47 +110059 err = fdt_pack(fdt1);
60 if (err)
David Gibson7ba551f2006-12-01 16:59:43 +110061 FAIL("fdt_pack(): %s", fdt_strerror(err));
62 sprintf(outname, "repacked.%s", inname);
David Gibson73d60922006-12-15 15:12:47 +110063 save_blob(outname, fdt1);
David Gibson7ba551f2006-12-01 16:59:43 +110064
David Gibson73d60922006-12-15 15:12:47 +110065 packsize = fdt_totalsize(fdt1);
David Gibson7ba551f2006-12-01 16:59:43 +110066
67 verbose_printf("oldsize = %d, bufsize = %d, packsize = %d\n",
68 oldsize, bufsize, packsize);
69 PASS();
70}