Exemplo n.º 1
0
def test_preprocessor_directive_if_elif_else():
    input = """
#if foo
#define foo 1
#elif t1
#define foo 2
#elif t2
#define foo 3
#elif t3
#define foo 4
#else
#define foo 5
#endif
"""
    output = """
#if foo
# define foo 1
#elif t1
# define foo 2
#elif t2
# define foo 3
#elif t3
# define foo 4
#else
# define foo 5
#endif
"""
    assert output == preprocessor_directive(input)
Exemplo n.º 2
0
def test_preprocessor_directive_nested():
    input = """
#if foo
#define a 1
#if bar
#define b 2
#else
#define c 3
#endif
#elif baz
#define d 4
#elif baz
#define e 5
#else
#define f 6
#endif
"""
    output = """
#if foo
# define a 1
# if bar
#  define b 2
# else
#  define c 3
# endif
#elif baz
# define d 4
#elif baz
# define e 5
#else
# define f 6
#endif
"""
    assert output == preprocessor_directive(input)
Exemplo n.º 3
0
def run_all(content: str) -> str:
    """ Run all formatters """
    content = clang_format(content)
    content = preprocessor_directive(content)
    content = remove_multiline_condition_space(content)
    content = parenthesize_return(content)
    content = space_before_semi_colon(content)
    content = hoist(content)
    content = align(content)
    return content
Exemplo n.º 4
0
def test_preprocessor_directive_if():
    input = """
#if foo
#define foo 1
#endif
"""
    output = """
#if foo
# define foo 1
#endif
"""
    assert output == preprocessor_directive(input)
Exemplo n.º 5
0
def test_preprocessor_directive_nested_10():
    input = """
#if a
#if b
#if c
#if d
#if e
#if f
#if g
#if h
#if i
#if j
#define foo 1
#endif
#endif
#endif
#endif
#endif
#endif
#endif
#endif
#endif
#endif
"""
    output = """
#if a
# if b
#  if c
#   if d
#    if e
#     if f
#      if g
#       if h
#        if i
#         if j
#          define foo 1
#         endif
#        endif
#       endif
#      endif
#     endif
#    endif
#   endif
#  endif
# endif
#endif
"""
    assert output == preprocessor_directive(input)