~ubuntu-branches/ubuntu/wily/openvswitch/wily

« back to all changes in this revision

Viewing changes to tests/test-json.c

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2015-08-10 11:35:15 UTC
  • mfrom: (1.1.30)
  • Revision ID: package-import@ubuntu.com-20150810113515-575vj06oq29emxsn
Tags: 2.4.0~git20150810.97bab95-0ubuntu1
* New upstream snapshot from 2.4 branch:
  - d/*: Align any relevant packaging changes with upstream.
* d/*: wrap-and-sort.
* d/openvswitch-{common,vswitch}.install: Correct install location for
  bash completion files.
* d/tests/openflow.py: Explicitly use ovs-testcontroller as provided
  by 2.4.0 release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 */
16
16
 
17
17
#include <config.h>
18
 
 
 
18
#undef NDEBUG
19
19
#include "json.h"
20
 
 
21
20
#include <ctype.h>
22
21
#include <errno.h>
23
22
#include <getopt.h>
24
23
#include <stdio.h>
25
 
 
 
24
#include "ovstest.h"
26
25
#include "util.h"
27
 
#include "ovstest.h"
 
26
 
28
27
/* --pretty: If set, the JSON output is pretty-printed, instead of printed as
29
28
 * compactly as possible.  */
30
29
static int pretty = 0;