mirror of
https://github.com/AdaCore/aws.git
synced 2026-02-12 12:29:46 -08:00
19 lines
487 B
Python
19 lines
487 B
Python
import os
|
|
from test_support import *
|
|
|
|
os.mkdir('generated')
|
|
os.mkdir('obj')
|
|
os.chdir('src')
|
|
|
|
exec_cmd('ada2wsdl', ['-q', '-Pdefault', '-a', 'http://localhost:8787',
|
|
'-f', 'wsdl_array_record_data.ads',
|
|
'-o', '../generated/wsdl_array_record.wsdl'])
|
|
|
|
os.chdir('../generated')
|
|
|
|
exec_cmd('wsdl2aws', ['-q', '-a', '-types', 'wsdl_array_record_data',
|
|
'-cb', 'wsdl_array_record.wsdl'])
|
|
|
|
os.chdir('..')
|
|
build('wsdl_array_record')
|